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

@rich-apis/vibe-tools

v1.4.0

Published

CLI toolkit for the stuff you keep re-doing. Env validation, JSON-to-TypeScript, changelogs, dependency audits, gitignore, README scaffold.

Readme

@rich-apis/vibe-tools

CLI toolkit for the stuff you keep re-doing. Env validation, JSON-to-TypeScript, changelogs, dependency audits, tsconfig, gitignore, README scaffold. One install, seven commands, zero config.

No runtime dependencies. Node.js 18+.

Install

npm install -g @rich-apis/vibe-tools

Or run directly:

npx @rich-apis/vibe-tools env

Commands

vibe env - Validate .env files

Catches missing variables, duplicates, syntax errors, and leaked secrets. Compares against .env.example if one exists.

vibe env                          # check .env against .env.example
vibe env .env.production          # check a specific file
vibe env --strict                 # fail on warnings too (CI mode)
vibe env --example .env.template  # custom example path

Returns exit code 1 on errors. Drop it in CI.

vibe json2ts - JSON to TypeScript

Reads JSON from a file or stdin, outputs TypeScript interfaces. Handles nested objects and arrays.

vibe json2ts data.json
vibe json2ts -n User api-response.json
echo '{"id": 1, "name": "test"}' | vibe json2ts
vibe json2ts --export -n Config settings.json

vibe changelog - Changelog from git

Reads git log and groups commits. Recognizes Conventional Commits if you use them, works fine if you don't.

vibe changelog
vibe changelog --from v1.0.0 --to v1.1.0
vibe changelog --format plain

vibe depcheck - Find unused dependencies

Scans source files for import/require statements and compares against package.json. Finds unused deps and missing deps.

vibe depcheck
vibe depcheck --dev                     # include devDependencies
vibe depcheck --ignore eslint           # skip specific packages
vibe depcheck ./packages/api            # check a subdirectory

Outputs the exact npm commands to fix what it finds.

vibe tsconfig - Generate tsconfig.json

Outputs a tsconfig.json for common project types. Prints to stdout so you can review before saving.

vibe tsconfig                         # Node.js defaults
vibe tsconfig --type react            # React / Next.js setup
vibe tsconfig --type library          # npm library setup
vibe tsconfig --type react --write    # write to ./tsconfig.json

Three presets: node, react, library. All strict by default.

vibe gitignore - Generate .gitignore

Outputs a .gitignore for common project types. Four presets, stdout by default.

vibe gitignore                        # Node.js defaults
vibe gitignore --type react           # React / Next.js
vibe gitignore --type python          # Python
vibe gitignore --type go              # Go
vibe gitignore --write                # write to ./.gitignore
vibe gitignore --append --type python # add python rules to existing file

vibe readme - Scaffold README.md

Generates a README from your package.json. Pulls name, description, install instructions, scripts, and license.

vibe readme                           # print to stdout
vibe readme --write                   # write to ./README.md
vibe readme > README.md               # same thing, with redirect

vibe license - License management

vibe license              # show current tier
vibe license VT-PRO-XXXX # activate a key

Tiers

| Feature | Free | Pro ($5) | Premium ($25) | |---------|------|----------|---------------| | All 7 commands | yes | yes | yes | | --json output | - | yes | yes | | --group (changelog) | - | yes | yes | | --readonly (json2ts) | - | yes | yes | | Batch processing | - | coming | coming | | CI/CD integration | - | - | coming | | Custom rules | - | - | coming |

One-time purchase. No subscription.

Upgrade: https://rich-apis.store/vibe-tools

Requirements

Node.js 18+

License

MIT