2023-09-29 11:47:59 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
edition = "2021"
|
|
|
|
exclude = ["artifacts.json", "index.node"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "binding_minifier_node"
|
|
|
|
publish = false
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-07-18 02:00:45 +03:00
|
|
|
napi-build = { workspace = true }
|
2023-09-29 11:47:59 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-18 02:00:45 +03:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
backtrace = { workspace = true }
|
|
|
|
napi = { workspace = true, features = ["napi3", "serde-json"] }
|
|
|
|
napi-derive = { workspace = true, features = ["type-def"] }
|
|
|
|
node_macro_deps = { path = "../node_macro_deps" }
|
|
|
|
path-clean = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json = { workspace = true, features = ["unbounded_depth"] }
|
|
|
|
sourcemap = { workspace = true }
|
|
|
|
tracing = { workspace = true, features = ["release_max_level_info"] }
|
|
|
|
tracing-chrome = { workspace = true }
|
|
|
|
tracing-futures = { workspace = true }
|
|
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
2023-09-29 11:47:59 +03:00
|
|
|
|
2024-04-17 02:35:45 +03:00
|
|
|
|
2024-07-18 02:00:45 +03:00
|
|
|
swc_compiler_base = { workspace = true, features = ["node"] }
|
|
|
|
swc_config = { workspace = true }
|
|
|
|
swc_core = { workspace = true, features = [
|
2023-09-29 11:47:59 +03:00
|
|
|
"allocator_node",
|
2023-09-29 22:51:00 +03:00
|
|
|
"common_concurrent",
|
|
|
|
"common_sourcemap",
|
2023-09-29 11:47:59 +03:00
|
|
|
"ecma_ast",
|
|
|
|
"ecma_codegen",
|
2023-09-29 22:51:00 +03:00
|
|
|
"ecma_parser",
|
2023-09-29 11:47:59 +03:00
|
|
|
"ecma_minifier",
|
2023-09-29 22:51:00 +03:00
|
|
|
"ecma_minifier_concurrent",
|
|
|
|
"ecma_transforms",
|
|
|
|
"ecma_visit",
|
2023-09-29 11:47:59 +03:00
|
|
|
] }
|
2024-07-18 02:00:45 +03:00
|
|
|
swc_error_reporters = { workspace = true }
|
|
|
|
swc_malloc = { workspace = true }
|
|
|
|
swc_nodejs_common = { workspace = true }
|