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

automark-release

v1.0.0

Published

A CLI tool to automate versioning, building, and tagging in Git projects.

Readme

automark-release

A CLI tool to automate versioning, building, and tagging in Git projects. Written in TypeScript with full type safety.

Features

  • Project Autodetection: Automatically detects if you're inside a project directory
  • Branch Selection: Choose which branch to use for the release (defaults to current branch)
  • Version Management: Reads version from package.json and creates Git tags
  • Build Automation: Cleans dist/ and runs build scripts
  • Git Integration: Commits, tags, and pushes changes automatically
  • NPM Registry: Configures NPM registry for publishing
  • Beautiful CLI: Colorful and informative terminal output

Installation

GitHub (source)

git clone https://github.com/ddavid93/automark-release.git
cd automark-release
npm install
npm run build
npm link

Global Installation

npm install -g automark-release

Using npx (no installation required)

npx automark-release

Usage

Inside a project directory

Simply run the command from within your project:

cd my-project
automark-release

The tool will automatically detect the project and its version.

From a parent directory

Run the command and provide the project folder name when prompted:

automark-release
# Then enter: my-project

What it does

  1. Detects project - Reads package.json to get project name and version
  2. Asks for branch - Prompts which branch to use (defaults to current branch)
  3. Validates branch - Warns if target branch is not develop, main, or master
  4. Cleans dist - Removes the ./dist directory
  5. Builds project - Runs npm run build-ttsc or npm run build
  6. Commits changes - Creates a commit with message build: vX.X.X
  7. Creates tag - Creates a Git tag vX.X.X
  8. Pushes branch - Pushes changes to the selected target branch
  9. Sets NPM registry - Configures https://registry.npmjs.org
  10. Pushes tag - Pushes the tag to the remote repository

Development

Prerequisites

  • Node.js >= 16.0.0
  • npm or pnpm

Setup

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode (watch)
npm run dev

# Type check without emitting
npm run typecheck

Project Structure

automate-version/
├── src/
│   └── index.ts      # Main TypeScript source
├── dist/             # Compiled JavaScript output
├── package.json
├── tsconfig.json
└── README.md

Type Safety

This project follows strict TypeScript conventions:

  • Interfaces: Prefixed with I (e.g., IColors, IPackageJson)
  • Types: Suffixed with Type (e.g., BranchNameType, TagNameType)
  • Strict mode: All strict TypeScript checks enabled

Publishing

# Build and publish to NPM
npm publish --access public

License

MIT