Check all project dependencies for issues.
Steps
-
Detect package manager
- package.json → npm/yarn/pnpm
- requirements.txt / pyproject.toml → pip
- go.mod → Go modules
- Cargo.toml → Cargo
- Gemfile → Bundler
-
Check for outdated packages
npm outdated 2>/dev/null pip list --outdated 2>/dev/null -
Check for vulnerabilities
npm audit 2>/dev/null pip audit 2>/dev/null -
Check for deprecated packages
- Read packag
[Description truncada. Veja o README completo no GitHub.]