[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
build = "build.rs"
description = "Speedy web compiler"
documentation = "https://rustdoc.swc.rs/swc/"
edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "6.0.0"
[lib]
bench = false
[features]
default = ["swc_v1"]
serde-impl = ["serde"]
swc_v1 = ["serde-impl"]
swc_v2 = ["serde-impl"]
[dependencies]
anyhow = { workspace = true }
dashmap = { workspace = true }
is-macro = { workspace = true }
once_cell = { workspace = true }
regex = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }
serde_json = { workspace = true }
tracing = { workspace = true }
string_enum = { version = "1.0.0", path = "../string_enum" }
swc = { version = "6.0.0", path = "../swc" }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_bundler = { version = "5.0.0", path = "../swc_bundler", features = [
"concurrent",
] }
swc_common = { version = "4.0.1", path = "../swc_common", features = [
"concurrent",
] }
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "4.0.2", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "4.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "6.0.0", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
[dev-dependencies]
pretty_assertions = { workspace = true }
testing = { version = "4.0.0", path = "../testing" }