Update and modernize project dependencies
Updates project dependencies safely with audit, testing, and changelog review.
/plugin marketplace add davepoon/buildwithclaude/plugin install commands-project-setup@buildwithclaude1. **Dependency Audit**Update and modernize project dependencies
Follow this approach to modernize dependencies: $ARGUMENTS
Dependency Audit
# Check outdated packages
npm outdated
pip list --outdated
composer outdated
# Security audit
npm audit
pip-audit
Update Strategy
Automated Updates
# Safe updates
npm update
pip install -U package-name
# Interactive updates
npx npm-check-updates -i
Breaking Changes Review
Testing and Validation
npm test
npm run build
npm run lint
Documentation Updates
Remember to update dependencies incrementally, test thoroughly, and maintain backward compatibility where possible.