| 1 | [package] |
| 2 | name = "react_compiler_napi" |
| 3 | version = "0.1.0" |
| 4 | edition = "2024" |
| 5 | |
| 6 | [lib] |
| 7 | crate-type = ["cdylib"] |
| 8 | |
| 9 | [dependencies] |
| 10 | napi = { version = "3", features = ["napi4"] } |
| 11 | napi-derive = "3" |
| 12 | react_compiler = { path = "../../../crates/react_compiler" } |
| 13 | react_compiler_ast = { path = "../../../crates/react_compiler_ast" } |
| 14 | serde = "1" |
| 15 | serde_json = { version = "1", features = ["unbounded_depth"] } |
| 16 | |
| 17 | [build-dependencies] |
| 18 | napi-build = "2" |