usestd::path::Path;useanyhow::Result;usecrate::package_json::PackageJson;/// Prints the current version from the working tree's package.json to stdout
/// as a bare semver string.
pub(crate)fnrun()->Result<()>{println!("{}",PackageJson::load(Path::new("."))?.version());Ok(())}