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

@lgarron-bin/repo

v0.14.5

Published

An opinionated tool for repo management.

Readme

repo

An opinionated tool for repo management.

Usage

Run using:

# Global (from `crates.io`)
cargo install repo
repo help
# Global (from `npm`)
bun install --global @lgarron-bin/repo
repo help

# Local (from `npm`)
bun add @lgarron-bin/repo
bun x -- @lgarron-bin/repo help
# Global (from `npm`)
npm install --global @lgarron-bin/repo
repo help

# Local (from `npm`)
bun add @lgarron-bin/repo
bun x @lgarron-bin/repo help

repo

An opinionated tool for repo management.

Usage: repo <COMMAND>

Commands:
  version       Perform operations on the repo version
  publish       Publish
  boilerplate   Set up boilerplate for the repo
  setup         Set up a repository checkout
  vcs           Get information about the current VCS
  workspace     Get information about the current workspace
  dependencies  Operate on dependencies
  completions   Print completions for the given shell
  print-schema  Print the given JSON schema
  help          Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version

repo version

Perform operations on the repo version

Usage: repo version [OPTIONS] <COMMAND>

Commands:
  get       Get the current version
  describe  Get more detailed version info, similar to `git describe --tags`
  set       Set the current version
  bump      Bump the current version
  help      Print this message or the help of the given subcommand(s)

Options:
      --ecosystem <ECOSYSTEM>  [possible values: javascript, rust]
  -h, --help                   Print help

repo publish

Publish

Usage: repo publish [OPTIONS]

Options:
      --ecosystem <ECOSYSTEM>  [possible values: javascript, rust]
  -h, --help                   Print help

repo boilerplate

Set up boilerplate for the repo

Usage: repo boilerplate <COMMAND>

Commands:
  ci                           Set up a CI template for GitHub and open for editing at: `.github/workflows/CI.yaml`
  auto-publish-github-release  Set up a CI template for auto-publishing releases from tags pushed to GitHub, at: .github/workflows/publish-github-release.yaml
  biome                        Set up linting using Biome
  tsconfig                     Set up `tsconfig.json`
  readme-cli-help              Set up `readme-cli-help.json`
  bunfig                       Set up `bunfig.toml`
  rust-toolchain               Set up `rust-toolchain.toml`
  help                         Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

repo setup

Set up a repository checkout

Usage: repo setup [COMMAND]

Commands:
  dependencies  Install dependencies
  help          Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

repo vcs

Get information about the current VCS

Usage: repo vcs <COMMAND>

Commands:
  kind           Get the kind of VCS. If there are multiple in the same project (e.g. `jj` + `git`), at most one will be returned (consistent with the `root` subcommand)
  root           Get the repository root folder If the folder is part of multiple repositories, at most one will be returned (consistent with the `kind` subcommand)
  latest-commit  Operate on the latest commit. This does not include the working copy (or a non-merge `@` if it is empty or has an empty description, in case of `jj`)
  help           Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

repo workspace

Get information about the current workspace

Usage: repo workspace <COMMAND>

Commands:
  root  Get the workspace root folder based on VCS or other litmus files (e.g. `package.json`, `Cargo.toml`) If the folder is part of multiple repositories, at most one will be returned (consistent with the `repo vcs kind` subcommand)
  help  Print this message or the help of the given subcommand(s)

Options:
  -h, --help  Print help

repo dependencies

Operate on dependencies

Usage: repo dependencies [OPTIONS] <COMMAND>

Commands:
  roll  
  help  Print this message or the help of the given subcommand(s)

Options:
      --ecosystem <ECOSYSTEM>              [possible values: javascript, rust]
      --package-manager <PACKAGE_MANAGER>  [possible values: npm, bun, yarn, pnpm, cargo]
  -h, --help                               Print help