mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
We need to split the cli crate up to reduce dependencies, the current cli crate is pulling in `oxc_prettier`, which is redundant for the linter.
30 lines
602 B
TOML
30 lines
602 B
TOML
[package]
|
|
name = "website"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "website"
|
|
test = false
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_linter = { workspace = true }
|
|
oxlint = { path = "../../apps/oxlint" }
|
|
|
|
bpaf = { workspace = true, features = ["docgen"] }
|
|
pico-args = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
schemars = { workspace = true }
|
|
handlebars = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|