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

verlift

v1.0.4

Published

CLI tool for scanning package licenses and bumping project versions. Supports both web and React Native projects.

Readme

Installation

Global installation:

# npm
npm install -g verlift

# yarn
yarn global add verlift

As a dev dependency:

# npm
npm install --save-dev verlift

# yarn
yarn add --dev verlift

Using npx / yarn dlx:

# npx
npx verlift <command>

# yarn
yarn dlx verlift <command>

Requirements

  • Node.js >= 14

Commands

scan

Crawls your project's node_modules, reads each package's license metadata, and writes the results to a JSON file.

verlift scan [options]

Options:

| Flag | Default | Description | | ------------------ | --------------- | -------------------------------------------- | | --includeDev | false | Include devDependencies in the scan | | --output <file> | licenses.json | Output file path | | --includeVersion | false | Include each package's version in the output |

Examples:

# Basic scan of production dependencies
verlift scan

# Include dev dependencies and package versions
verlift scan --includeDev --includeVersion

# Write output to a custom file
verlift scan --output third-party-licenses.json

Output format (licenses.json):

[
  {
    "package": "express",
    "license": "MIT",
    "url": "https://www.npmjs.com/package/express"
  },
  {
    "package": "lodash",
    "version": "4.17.21",
    "license": "MIT",
    "url": "https://www.npmjs.com/package/lodash"
  }
]

The version field only appears when --includeVersion is used.


bump

Increments the project's semantic version (patch, minor, or major). Automatically detects React Native projects and updates Android and iOS build files accordingly.

verlift bump <type> [options]

Arguments:

| Argument | Description | | -------- | ---------------------------------------------- | | patch | Increment patch version: 1.2.31.2.4 | | minor | Increment minor version: 1.2.31.3.0 | | major | Increment major version: 1.2.32.0.0 | | code | Bump only Android/iOS build codes, skip semver |

Options:

| Flag | Default | Description | | ---------------------- | -------------- | ----------------------------------------- | | --output <file> | version.json | Output file for version snapshot | | --gradlePath <path> | Auto-detected | Path to android/app/build.gradle | | --pbxprojPath <path> | Auto-detected | Path to ios/*.xcodeproj/project.pbxproj | | --platforms <list> | See below | Comma-separated platforms to update |

--platforms defaults:

| Project type | Default platforms | | ------------ | ----------------- | | Web | web | | React Native | android,ios |

Examples:

# Bump patch version
verlift bump patch

# Bump minor version
verlift bump minor

# Bump major version
verlift bump major

# Only increment Android versionCode and iOS CURRENT_PROJECT_VERSION (no semver change)
verlift bump code

# Use custom native file paths
verlift bump minor --gradlePath ./android/app/build.gradle --pbxprojPath ./ios/MyApp.xcodeproj/project.pbxproj

# React Native: only bump Android
verlift bump patch --platforms=android

# React Native: only bump iOS
verlift bump patch --platforms=ios

# React Native: bump both platforms (default for RN)
verlift bump patch --platforms=android,ios

Web projects

For standard web/Node.js projects, bump updates the version field in package.json and writes a snapshot file:

{ "version": "1.3.0" }

React Native projects

When react-native is detected in your dependencies, bump additionally patches native project files:

  • Android (android/app/build.gradle): increments versionCode and updates versionName
  • iOS (ios/*.xcodeproj/project.pbxproj): increments CURRENT_PROJECT_VERSION and updates MARKETING_VERSION

The output snapshot (version.json) includes all platform versions:

{
  "android": {
    "versionName": "1.3.0",
    "versionCode": 42
  },
  "ios": {
    "versionName": "1.3.0",
    "versionCode": 42
  }
}

Using verlift bump code only increments the native build codes (versionCode / CURRENT_PROJECT_VERSION) without changing the semver string — useful for re-releasing the same version to app stores.


Help

verlift --help

License

MIT © Ernest Bieś