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

@acme-skunkworks/commitlint-config

v1.0.0

Published

Shared commitlint configuration for ACME Skunkworks packages.

Readme

@acme-skunkworks/commitlint-config

Shared commitlint configuration for ACME Skunkworks packages.

It single-sources the estate's allowed Conventional Commit types into one published package, consumed by both layers of the commit gate so the ruleset can never drift between them:

  • the reusable CI workflow (reusable-validate-commits.yml) that validates a PR's base..head commit range, and
  • the local husky pre-push hook that runs the same range check before a push ever reaches CI.

It extends @commitlint/config-conventional and retains all of its defaults — only the list of allowed commit types is pinned to the estate's set.

Install

pnpm add -D @acme-skunkworks/commitlint-config @commitlint/cli

@commitlint/config-conventional is a runtime dependency of this package, so installing this config pulls it in automatically — you do not need to add it yourself.

Usage

Point your commitlint config at this package:

// commitlint.config.mjs
export default {
  extends: ["@acme-skunkworks/commitlint-config"],
};

The example uses .mjs so the export default works regardless of the consuming project's module type. In an ESM project ("type": "module") a plain commitlint.config.js works too; in a CommonJS project use .mjs (as above) or module.exports in a .js/.cjs file.

Then validate a commit-message range — exactly what the CI workflow and the pre-push hook do:

# lint every commit on the branch that isn't on the base
pnpm exec commitlint --from "origin/main" --to "HEAD"

Allowed commit types

The type-enum rule is set explicitly and is aligned to the estate's release-please bump rules:

| Type | Release bump | Notes | | ---------- | ------------ | -------------------------------------- | | feat | minor | A new feature | | fix | patch | A bug fix | | perf | patch | A performance improvement | | revert | patch | Reverts a previous commit | | chore | none | Tooling / housekeeping | | docs | none | Documentation only | | ci | none | CI configuration and pipelines | | build | none | Build system or external dependencies | | refactor | none | Neither fixes a bug nor adds a feature | | test | none | Adding or correcting tests | | style | none | Formatting; no code-behaviour change |

A ! marker or a BREAKING CHANGE: footer promotes any type to a major bump.

Everything else is inherited from @commitlint/config-conventional unchanged, including:

  • a non-empty commit type and subject,
  • the header max-length limit, and
  • defaultIgnores — merge (Merge …), revert (Revert …), fixup! and squash! messages are skipped automatically, so this config never needs to blanket-ignore them by author identity.

Versioning: float on latest

The gate is designed to track this config's latest published version rather than pinning it, mirroring how the estate floats on its shared GitHub workflows (@v1). The reusable CI workflow installs the config fresh on each run, so a caret range with no committed lockfile resolves to the latest published version — a ruleset change reaches the gate on its next run, with no per-repo bump PR.

Where a consumer instead commits a lockfile (for example the local pre-push hook running in a repo that pins its dev-dependencies), the resolved version stays put until it is updated: the package is Dependabot-versioned like the estate's other shared packages, so those consumers get update PRs. The trade-off is deliberate — because a ruleset change reaches the floating consumers immediately, edits must be made carefully.

Development

pnpm install
pnpm build   # tsc → dist/ (the published artifact)
pnpm test    # vitest — behavioural tests over the resolved ruleset
pnpm tsc     # type-check
pnpm lint    # eslint

The ruleset itself is src/index.ts; src/index.test.ts exercises the effective config by resolving extends through @commitlint/load and linting sample messages with @commitlint/lint.

Licence

MIT