clean-unused-deps
v1.0.0Clean up unused npm dependencies in a project. Use when you want to remove packages that are installed but not used in the codebase.
Installation
Please help me install the skill `clean-unused-deps` from SkillHub official store.
npx skills add hgxszhj-pixel/clean-unused-deps
Clean Unused Dependencies
This skill helps identify and remove unused npm dependencies from a project.
Workflow
- Identify unused dependencies using
depcheck - Remove the unused dependencies with
npm uninstall
Prerequisites
- Node.js and npm installed
depcheckinstalled globally (npm install -g depcheck)
Instructions
- Run
depcheckin the project root to identify unused dependencies - Review the output and identify packages to remove
- Run
npm uninstall <package-name>for each unused package
Example
# Check for unused dependencies
depcheck
# Remove unused package
npm uninstall unused-package-name
For multiple packages:
npm uninstall package1 package2 package3