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

depfixer

v1.1.9

Published

CLI tool for analyzing and fixing JavaScript/TypeScript dependency conflicts

Readme

DepFixer CLI

Analyze and fix JavaScript/TypeScript dependency conflicts in your projects.

Installation

npm install -g depfixer
# or use directly with npx
npx depfixer

Quick Start

# Free audit - see issues and health score
npx depfixer analyze

# Full analysis with fix recommendations (requires login)
npx depfixer analyze --full

# Migration analysis to target framework version
npx depfixer analyze --migrate 19

Commands

analyze

Analyze your project's package.json for dependency conflicts.

npx depfixer analyze [options]

Options:

  • --full - Full analysis with specific version recommendations (requires auth, 1 credit)
  • --migrate <version> - Migration analysis to target Angular/React version (requires auth, 1 credit)
  • --json - Output results as JSON
  • --ci - CI mode - exit code 1 if critical issues found
  • --path <dir> - Path to project directory (default: current directory)

Examples:

npx depfixer analyze                    # Free audit
npx depfixer analyze --full             # Full analysis
npx depfixer analyze --migrate 19       # Migrate to v19
npx depfixer analyze --path ./my-app    # Analyze specific directory
npx depfixer analyze --json --ci        # CI pipeline usage

fix

Apply fixes from a previous --full or --migrate analysis.

npx depfixer fix [options]

Options:

  • --path <dir> - Path to project directory (default: current directory)

Creates a package.json.fixed file with recommended versions.

login

Authenticate with your DepFixer account using device code flow.

npx depfixer login

logout

Sign out and clear stored credentials.

npx depfixer logout

graph

Open dependency graph visualization in your browser.

npx depfixer graph [options]

Options:

  • --path <dir> - Path to project directory

Pricing

| Command | Cost | |---------|------| | analyze (audit mode) | FREE | | analyze --full | 1 credit | | analyze --migrate | 1 credit | | fix | FREE (uses cached analysis) |

Supported Frameworks

  • Angular (9-19)
  • React (16-19)
  • Vue.js
  • Next.js
  • NestJS

What It Detects

  • Peer dependency conflicts
  • Version mismatches between related packages
  • Deprecated packages
  • Breaking changes
  • TypeScript version compatibility
  • Framework-specific version alignment issues

Requirements

  • Node.js >= 18.0.0

Links

License

MIT