Cargo.toml19 lines
mainRaw[package]
name = "react_compiler_napi"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = { version = "3", features = ["napi4"] }
napi-derive = "3"
react_compiler = { path = "../../../crates/react_compiler" }
react_compiler_ast = { path = "../../../crates/react_compiler_ast" }
serde = "1"
serde_json = { version = "1", features = ["unbounded_depth"] }
[build-dependencies]
napi-build = "2"
Loading syntax highlighting…