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

@wellmade/commitlint-config

v0.2.0

Published

Wellmade's shared commitlint config — minimal additions to Conventional Commits, no opinionated scope/subject rules.

Readme

@wellmade/commitlint-config

Conventional Commits with a minimal set of additional lint rules to keep git log --oneline tidy, without locking you into Wellmade's own scope vocabulary or rejecting subjects that contain proper nouns / acronyms.

Install

npm install --save-dev @commitlint/cli @wellmade/commitlint-config
// commitlint.config.js
export default { extends: ['@wellmade/commitlint-config'] };

If you use husky:

echo 'npx --no-install commitlint --edit "$1"' > .husky/commit-msg
chmod +x .husky/commit-msg

What's enforced

| Rule | Level | Effect | | --------------------------------- | ----- | ----------------------------------------------------------------------------------- | | @commitlint/config-conventional | error | The full Conventional Commits baseline (type-enum, subject-empty, etc.). | | header-max-length: 100 | error | Keeps git log --oneline readable. | | body-leading-blank | error | Blank line between subject and body. | | footer-leading-blank | warn | Blank line between body and footer. Warning, not error — see note below. |

Why no subject-case rule?

Earlier versions enforced ['sentence-case', 'lower-case'] on subjects to catch AI-generated Title Case Subject Line spam. In practice the rule misfired constantly on proper nouns and acronyms (Rekor, PascalCase, NestJS, TypeScript, JSON) and the Conventional-Commits type prefix (feat:, chore:) already signals intentionality. Real-world subjects need uppercase. PR review catches the AI-spam case well enough.

If your team wants the strict version back, add it to your own config:

'subject-case': [2, 'always', ['sentence-case', 'lower-case']]

Note on footer-leading-blank

Commitlint's conventional-changelog parser treats any blank line in the body as the body→footer boundary, then complains that the trailing footer line (e.g. Co-Authored-By:) is missing its leading blank. This mis-fires on perfectly valid markdown commit bodies that group bullets with blank lines, e.g.:

chore: cleanup

- group 1, line 1
- group 1, line 2

- group 2, line 1
- group 2, line 2

Co-Authored-By: someone <[email protected]>

That message is well-formed Conventional Commits but the parser rejects it. Demoting footer-leading-blank to warning keeps the signal without blocking the commit. The workaround for the warning itself is to keep the body to a single paragraph (no blank line between bullet groups).

Scopes

This config does not enforce a scope-enum rule by default. You can use any scope (or no scope) in your commit messages.

If your project wants to lock scopes to an allow-list — typically your service or module names — add scope-enum in your own config:

// commitlint.config.js
export default {
  extends: ['@wellmade/commitlint-config'],
  rules: {
    'scope-enum': [2, 'always', ['api', 'dashboard', 'deps', 'ci', 'docs']],
  },
};

Inside Wellmade's own toolchain repos (this one included), the equivalent rule is opted into per-repo so the cross-cutting package-name scopes (eslint-config, bedrock, etc.) are enforced only where they matter, not pushed onto every consumer.