[package]
name = "react-perf-analyzer"
version = "0.5.4"
edition = "2021"
description = "React performance + security scanner. Finds perf anti-patterns, XSS, secrets, and CVEs. Single binary, zero config, SARIF output."
license = "MIT"
repository = "https://github.com/rashvish18/react-perf-analyzer"
homepage = "https://github.com/rashvish18/react-perf-analyzer"
documentation = "https://github.com/rashvish18/react-perf-analyzer#readme"
readme = "README.md"
keywords = ["react", "security", "linter", "sast", "oxc"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["test_fixtures/", "*.sarif", "react-perf-report.html"]
[[bin]]
name = "react-perf-analyzer"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
rayon = "1.10"
walkdir = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
basic-toml = "0.1"
regex-lite = "0.1"
glob = "0.3"
oxc_allocator = "0.67"
oxc_parser = "0.67"
oxc_ast = "0.67"
oxc_span = "0.67"
oxc_ast_visit = "0.67"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1