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

@bauglir/semantic-release-configuration

v1.1.1

Published

A shareable semantic release configuration supporting a range of languages and platforms I tend to work in.

Downloads

11

Readme

Semantic Release Configuration

A shareable semantic release configuration supporting a range of languages and platforms I tend to work in.

Features

Usage

  • Create a personal access token, with api and write_repository scopes. Make the token available as a GITLAB_TOKEN or GL_TOKEN CI/CD variable of the project using the configuration.

    For improved security, use a unique token for every project this configuration is used in!

  • Use this shareable semantic release configuration by including it in the extends configuration for the project to be semantically released.

JavaScript Packages

JavaScript packages are detected based on the presence of a package.json file in the root of the project.

Templated Content in README.md Files

The configuration will look for __NEXT_SEMANTIC_RELEASE_VERSION__ tokens in templates in a project's root-level README.md and replace them with the version that is being released. This is, for instance, useful for automatically keeping installation instructions up-to-date.

Templated content is created using HTML comments and has the following structure:

  • A <!-- START_VERSIONED_TEMPLATE token,
  • the template itself with one or more __NEXT_SEMANTIC_RELEASE_VERSION__ tokens,
  • a comment closing tag -->,
  • (optionally) content that was previously templated,
  • a comment closing the templated content <!-- END_VERSIONED_TEMPLATE -->.

More concretely a section in a README that looks like

<!-- START_VERSIONED_TEMPLATE

The next semantically released version will be v__NEXT_SEMANTIC_RELEASE_VERSION__!

-->
<!-- END_VERSIONED_TEMPLATE -->

would, after a v1.2.3 release using the configuration has been triggered, become

<!-- START_VERSIONED_TEMPLATE

The next semantically released version will be v__NEXT_SEMANTIC_RELEASE_VERSION__!

-->

The next semantically released version will be v1.2.3!

<!-- END_VERSIONED_TEMPLATE -->

Note that the v is in the template! The version as derived by the semantic release tooling does not contain that prefix.

Troubleshooting

Publishing the initial release of a scoped JavaScript package

Creating the initial release of a scoped JavaScript may fail if the package is intended to be public and the person creating the release not having paid for private packages. This results in an error similar to

npm ERR! 402 Payment Required - PUT https://registry.npmjs.org/@<scope>%2f<package-name> -
You must sign up for private packages

When this happens, publish the initial release manually using npm publish --access=public after making sure the local copy of the project to be released is up-to-date.

When this happens, it is typically also necessary to create the initial GitHub release by hand from the tag and changelog that was created by the semantic-release tooling.