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

@gitghost/cli

v0.1.3

Published

ship code, leave no trace. anonymous git commits via linkable ring signatures.

Readme

@gitghost/cli

ship code, leave no trace.

Anonymous git commits via linkable ring signatures (LSAG over secp256k1). Sign as one of N declared contributors. Verifiers can prove the commit came from your trusted set, but cannot tell which member signed.

install

one-line installer (recommended)

curl -fsSL https://gitghost.org/install.sh | sh

npm

npm install -g @gitghost/cli

no install (npx)

npx @gitghost/cli init my-team
npx @gitghost/cli ring add torvalds
npx @gitghost/cli commit -m "fix: critical CVE"

requires Node 18 or newer.

quick start

# inside any git repo
gitghost init linux-kernel-core         # bootstrap .gitghost/ + identity

# build the ring (pulls keys from github.com/<user>.keys)
gitghost ring add-self                  # add your local pubkey
gitghost ring add torvalds              # 1 of 4
gitghost ring add gregkh                # 2 of 4
gitghost ring add bagder                # 3 of 4
gitghost ring add dhh                   # 4 of 4

gitghost ring list                      # inspect the ring root + members

# sign and ship
git add -A
gitghost commit -m "fix: critical CVE-2026-XXXX"

# verify
gitghost verify <sha>

what gets written to your commit

A real RFC-5322 trailer block — picked up by any git host or tooling that understands trailers, with no fork or extension required:

fix: critical CVE-2026-XXXX

Ghost-Ring: linux-kernel-core (4 members)
Ghost-Ring-Root: bafkreih7q2zi73p9aplc4eov3iqbjnmhrhuw5kbphr2kk7v2v3iq6q3aaa
Ghost-Key-Image: 02a1b2c3d4e5f6...
Ghost-Signature: lsag1.<c0>.<s_concat>.<keyImage>

Inspect with standard git interpret-trailers. Verify the same commit in the browser at gitghost.org/verify — same math, same result.

commands

gitghost init [ring-name]            # bootstrap .gitghost/ in this repo
gitghost ring add <github-username>  # pull keys from github.com/<user>.keys
gitghost ring add-self               # add your local identity to the ring
gitghost ring remove <github>        # remove a member
gitghost ring list                   # print members + ring root
gitghost commit -m <message>         # sign + commit
gitghost commit -m <msg> --anchor    # sign + commit + anchor on Base
gitghost verify <commit-sha>         # parse trailers + verify LSAG
gitghost anchor [commit-sha]         # anchor (or list) an anchored commit
gitghost --help                      # full help

what's in .gitghost

.gitghost/
├─ identity.json   secp256k1 keypair (NEVER commit — auto-gitignored)
├─ ring.json       ring config: name, context, members
└─ anchors.json    local index of anchored commits

identity.json is auto-gitignored on init. The ring config and anchor log SHOULD be committed so verifiers and collaborators can re-run gitghost verify against the same ring.

how it works

  • LSAG (Liu, Wei, Wong 2004) — linkable spontaneous anonymous group signature scheme. 1-out-of-N indistinguishability with a stable key image per (signer, ring) pair for sybil resistance.
  • secp256k1 — same curve as Bitcoin and Ethereum, well-tested.
  • Key imageI = sk * H_p(pk || ctx), deterministic per signer inside a ring. Same signer → same key image → reuse-detectable, but identity remains hidden.

References:

security

  • The CLI never makes network calls during commit or verify. The cryptography is fully local.
  • ring add <user> does fetch github.com/<user>.keys to derive a deterministic ghost public key. This is the only outbound network call in normal use.
  • identity.json holds your secret key. Treat it like ~/.ssh/id_rsa: do not commit, do not share. On Windows, lock the file ACL down with icacls .gitghost\identity.json /inheritance:r /grant:r %USERNAME%:F.

uninstall

npm uninstall -g @gitghost/cli

license

MIT.