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

dep-wizard

v1.0.2

Published

[![npm version](https://img.shields.io/npm/v/dep-wizard.svg)](https://www.npmjs.com/package/dep-wizard) [![License](https://img.shields.io/npm/l/dep-wizard.svg)](LICENSE) [![Downloads](https://img.shields.io/npm/dw/dep-wizard.svg)](https://www.npmjs.c

Readme

Dep-Wizard 🧙‍♂️

Visualize, Scan, and Resolve Dependency Issues in Your Node.js Projects!

npm version
License
Downloads

Dep-Wizard is a command-line tool designed to make managing dependencies easier for developers. With just a few commands, you can scan for conflicts, resolve issues, and visualize the dependency tree for any Node.js project.


Features

  • 🔍 Scan Dependencies: Find potential conflicts and outdated packages.
  • 🛠 Resolve Issues: Resolve version mismatches effortlessly.
  • 🌳 Visualize Dependency Tree: See a complete tree of your project's dependencies.
  • ⚡️ Easy to Use: Simple CLI interface with detailed output.

Installation 📦

Install the package globally to access it from anywhere:

npm install -g dep-wizard

Or install it locally to use in a specific project:

npm install dep-wizard

Usage 🚀

Once installed, you can use dep-wizard via the command line. The syntax is:

dep-wizard <command>

Available Commands:

1. Scan Dependencies

Find conflicts and outdated packages in your node_modules directory.

dep-wizard scan

Example Output:

Scanning for dependency conflicts...
⚠️ Conflict detected: [email protected] vs [email protected]
✅ All other dependencies are up-to-date!

2. Resolve Conflicts

Automatically resolve version mismatches for your dependencies.

dep-wizard resolve

Example Output:

Resolving conflicts...
✅ package-name updated to version 2.0.0

3. Visualize Dependency Tree

Generate a visual representation of your project's dependencies.

dep-wizard visualize

Example Output:

Dependency tree built!
{
  "chalk": {},
  "yargs": {
    "yargs-parser": {},
    "cliui": {
      "wrap": {}
    }
  }
}

Why Dep-Wizard? 🤔

Managing dependencies in large Node.js projects can become overwhelming. Dependency conflicts, outdated packages, and deeply nested trees are common challenges. Dep-Wizard simplifies this process by automating scanning, resolving, and visualizing tasks.


How It Works 🛠

  1. Scanning:
    Scans your node_modules and package.json for:

    • Version conflicts
    • Outdated dependencies
  2. Resolving:
    Updates conflicting dependencies to the latest compatible versions.

  3. Visualization:
    Builds a detailed dependency tree, making it easy to understand the structure of your project.


Configuration ⚙️

Dep-Wizard works out of the box, but you can customize its behavior by adding a .dep-wizardrc.json file in the root of your project:

{
  "ignore": [".bin"],
  "maxDepth": 3
}
  • ignore: Directories to skip during scanning or visualization.
  • maxDepth: Maximum depth for the dependency tree visualization.

Contributing 🤝

We welcome contributions to improve Dep-Wizard! Here's how you can get involved:

  1. Fork the repository.
  2. Create a new branch for your feature/bug fix.
  3. Submit a pull request.

License 📜

This project is licensed under the MIT License.


Feedback and Support 🛠

If you encounter any issues or have suggestions, feel free to open an issue.

Let Dep-Wizard be your guide to dependency management in Node.js! 🧙‍♂️✨