Dependency Cleanup
Bloated dependencies slow down builds, increase security surface area, and complicate updates.
Cleanup Protocol
- Audit: Review
package.json,requirements.txt, orCargo.toml. - Verify Usage: For any suspect dependency, perform a global search across the codebase (e.g.,
import .* from 'lodash'). - Remove: If there are zero usages, use the native package manager command to remove it (e.g.,
npm uninstall lodashorpip uninstall ...). Do not just
[Description truncada. Veja o README completo no GitHub.]