Gathering detailed insights and metrics for depsensei
Gathering detailed insights and metrics for depsensei
Gathering detailed insights and metrics for depsensei
Gathering detailed insights and metrics for depsensei
npm install depsensei
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (90.48%)
JavaScript (9.52%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
3 Commits
1 Branches
1 Contributors
Updated on Jun 02, 2025
Latest Version
0.1.8
Package Id
depsensei@0.1.8
Unpacked Size
60.67 kB
Size
13.78 kB
File Count
26
NPM Version
10.9.2
Node Version
22.15.1
Published on
Jun 02, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A smart CLI tool that helps developers maintain healthy dependencies across their projects. DepSensei automatically detects, analyzes, and helps resolve dependency issues while keeping your project secure and up-to-date.
There are several ways to use DepSensei:
1# Run directly without installation 2npx depsensei
Pros:
Cons:
1# Install as a dev dependency in your project 2npm install depsensei --save-dev 3 4# Run using npx 5npx depsensei 6 7# Or run directly from node_modules 8./node_modules/.bin/depsensei
Pros:
Cons:
1# Install globally 2npm install -g depsensei 3 4# Run from anywhere 5depsensei
Pros:
Cons:
1cd your-project
1depsensei analyze
1depsensei fix
1# Basic analysis 2depsensei analyze 3 4# Analyze with specific options 5depsensei analyze --path <custom-path> # Analyze a specific project path 6depsensei analyze --ecosystem <ecosystem> # Analyze a specific ecosystem
The analysis will show:
1# Basic fix mode 2depsensei fix 3 4# Interactive mode (recommended) 5depsensei fix --interactive 6 7# Show what would be fixed without making changes 8depsensei fix --dry-run 9 10# Force mode (skip confirmations) 11depsensei fix --force 12 13# Skip backup creation 14depsensei fix --no-backup 15 16# Skip npm install after updates 17depsensei fix --no-install 18 19# Fix a specific project path 20depsensei fix --path <custom-path> 21 22# Fix a specific ecosystem 23depsensei fix --ecosystem <ecosystem>
The fix command will:
1# Show help 2depsensei --help 3 4# Show version 5depsensei --version
1git clone https://github.com/ericBlack1/depSensei.git 2cd depSensei
1npm install
1npm run build
1# Run tests 2npm test 3 4# Run workflow tests 5npm run test:workflow 6 7# Start development mode 8npm run dev 9 10# Lint code 11npm run lint 12 13# Format code 14npm run format 15 16# Build project 17npm run build
depsensei/
├── src/
│ ├── analyzers/ # Ecosystem-specific analyzers
│ ├── fixers/ # Fix generators and appliers
│ ├── commands/ # CLI commands
│ ├── core/ # Core types and utilities
│ └── utils/ # Helper functions
├── test/ # Test files
└── dist/ # Compiled output
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
If you encounter any issues or have questions, please:
No vulnerabilities found.
No security vulnerabilities found.