[package] authors = ["강동윤 "] build = "build.rs" edition = "2021" exclude = ["artifacts.json", "index.node"] license = "Apache-2.0" name = "binding_css_node" publish = false version = "0.1.0" [lib] bench = false crate-type = ["cdylib"] [features] [build-dependencies] napi-build = { version = "1" } [dependencies] anyhow = "1" binding_commons = { path = "../binding_commons" } napi = { version = "2", default-features = false, features = [ "napi3", "serde-json", ] } napi-derive = { version = "2", default-features = false, features = [ "type-def", ] } node_macro_deps = { path = "../node_macro_deps" } serde = { version = "1", features = ["derive"] } serde_json = "1" swc_common = { path = "../swc_common", features = ["perf", "sourcemap"] } swc_css_ast = { path = "../swc_css_ast" } swc_css_codegen = { path = "../swc_css_codegen" } swc_css_minifier = { path = "../swc_css_minifier" } swc_css_parser = { path = "../swc_css_parser" } swc_error_reporters = { path = "../swc_error_reporters" } tracing = { version = "0.1.32", features = ["release_max_level_info"] } tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }