UNPKG

node-tidy

Version:

A CLI tool to find and remove unused NPM packages and Install Missing packages in your Node.js projects.

7 lines (6 loc) 155 B
#!/usr/bin/env node import main from "./core/main"; main().catch((err) => { console.error("An error occurred:", err.message); process.exit(1); });