npm-utils 0.6.1

Pure-Rust npm toolkit: resolve, download, install/ci, add/remove/upgrade, search, SBOM (CycloneDX/SPDX), and vulnerability audit (npm + OSV) — no Node.
Documentation
1
2
3
4
5
6
//! The `npm-utils` command-line tool. Requires the `cli` feature
//! (`cargo install npm-utils --features cli`).

fn main() -> std::process::ExitCode {
    npm_utils::cli::main_with(std::env::args_os())
}