[package]
name = "npm-run-scripts"
version = "1.0.2"
edition = "2021"
rust-version = "1.70"
description = "Fast interactive TUI for running npm scripts"
license = "MIT"
keywords = ["cli", "tui", "npm", "scripts", "terminal"]
categories = ["command-line-utilities", "development-tools"]
repository = "https://github.com/tx2z/nrs"
homepage = "https://github.com/tx2z/nrs"
readme = "README.md"
documentation = "https://github.com/tx2z/nrs#readme"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
ratatui = "0.29"
crossterm = "0.28"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "5"
fuzzy-matcher = "0.3"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
thiserror = "1"
shell-words = "1"
glob = "0.3"
serde_yaml = "0.9"
[build-dependencies]
clap = { version = "4", features = ["derive"] }
clap_mangen = "0.2"
[dev-dependencies]
criterion = "0.5"
tempfile = "3"
assert_cmd = "2"
predicates = "3"
insta = "1"
regex = "1"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dist]
inherits = "release"
lto = "thin"
[[bin]]
name = "nrs"
path = "src/main.rs"
[[bench]]
name = "filtering"
harness = false
[workspace.metadata.dist]
cargo-dist-version = "0.30.3"
ci = "github"
installers = ["shell", "powershell", "homebrew"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
tap = "tx2z/homebrew-tap"
pr-run-mode = "plan"
publish-jobs = ["homebrew", "./publish-crates-io"]
install-updater = false