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

hatch-cli

v1.1.5

Published

CLI for hatch launchpad

Readme

HATCH CLI

This documentation will be focused on all the cli commands available to you. For a more detailed walkthrough of how to set up and launch you project go to our client repository.

Requirements

Installation

npm install -g hatch-cli

Run hatch-cli to see all the commands available to you. Run hatch-cli help [command] to display information for a command.

General usage: hatch-cli [command] [options] <subcommand>

Commands

mint

Mint assets and metadata to canister. hatch-cli mint [options]

  • -p, --parallel Mint in parallel. This means that the order of the NFTs in your folder is not guaranteed. (default: false)
  • -d, --delay <delay> Time (in ms) to delay between subsequent mint requests (default 500). Only affects minting when parallel is set to true (default: "500")
  • -v, --verbose Flag to determine whether to print more detailed logging statements as you mint.

unpin

Unpin all assets from ifps. hatch-cli unpin

identity

Create/display your identity. hatch-cli identity

init

Initialize NFT canister with proper ownership data. You need 2 WICP in your minting account. hatch-cli init

sale

Initialize sale information. hatch-cli sale [options]

  • -f, --force Force a sale reset even after setting it up already. You are not able to reset the sale if the sale has already begun. (default: false)

validate

Validate metadata and assets. This ensures your metadata/assets match up. hatch-cli validate

whitelist

Set up whitelist from config/whitelist.json. hatch-cli whitelist

links

Set up external links (gif, social media, etc.) from config/links.json. hatch-cli links

wicp

Some simple WICP utils to check balance and wrap ICP. hatch-cli wicp [options] <action> Options:

  • -m, --amount <amt>. Amount of WICP to wrap/unwrap. (default: "1")
  • -a, --all. Flag representing whether to process all of your WICP balance in the minting account. (default: false)

Actions: <action> Action to perform (wrap/unwrap/balance/creatorBalance/claim).

  • wrap. Wraps a certain amount of ICP in the minting account to WICP.
  • unwrap. Unwrap a certain amount of ICP in the minting account to WICP. This unwraps back to your creator wallet address.
  • balance. Returns how much WICP you have in your minting account.
  • creatorBalance. Returns how much WICP you can claim from your nft canister. This includes marketplace royalties and launchpad sale funds.
  • claim. This claims all your WICP credit from the nft canister. The WICP is delivered to your creator principal.