2021-08-13 13:03:04 +03:00
|
|
|
[package]
|
2022-08-14 04:15:56 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
description = "Speedy web compiler"
|
2021-08-13 13:03:04 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc/"
|
2022-08-14 04:15:56 +03:00
|
|
|
edition = "2021"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_node_bundler"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-09-11 11:33:49 +03:00
|
|
|
version = "0.55.4"
|
2021-08-13 13:03:04 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
|
|
|
|
2021-12-12 16:52:58 +03:00
|
|
|
[features]
|
2023-03-27 07:28:42 +03:00
|
|
|
default = ["swc_v1"]
|
|
|
|
serde-impl = ["serde"]
|
|
|
|
swc_v1 = ["serde-impl"]
|
|
|
|
swc_v2 = ["serde-impl"]
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-24 07:46:42 +03:00
|
|
|
anyhow = "1"
|
2023-06-22 16:37:35 +03:00
|
|
|
dashmap = "5.4.0"
|
2023-06-21 18:38:46 +03:00
|
|
|
is-macro = "0.3.0"
|
2023-06-22 10:40:41 +03:00
|
|
|
once_cell = "1.18.0"
|
2023-03-24 07:46:42 +03:00
|
|
|
regex = "1"
|
2023-03-27 07:28:42 +03:00
|
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
2021-08-13 13:03:04 +03:00
|
|
|
serde_json = "1"
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-06-21 18:44:11 +03:00
|
|
|
string_enum = { version = "0.4.1", path = "../string_enum" }
|
2023-09-11 11:33:49 +03:00
|
|
|
swc = { version = "0.266.4", path = "../swc" }
|
2023-08-24 11:20:56 +03:00
|
|
|
swc_atoms = { version = "0.5.9", path = "../swc_atoms" }
|
2023-09-11 11:33:49 +03:00
|
|
|
swc_bundler = { version = "0.220.4", path = "../swc_bundler", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2023-08-31 16:25:10 +03:00
|
|
|
swc_common = { version = "0.32.1", path = "../swc_common", features = [
|
2022-08-14 04:15:56 +03:00
|
|
|
"concurrent",
|
|
|
|
] }
|
2023-08-31 16:25:10 +03:00
|
|
|
swc_ecma_ast = { version = "0.109.1", path = "../swc_ecma_ast" }
|
2023-09-11 11:33:49 +03:00
|
|
|
swc_ecma_codegen = { version = "0.145.2", path = "../swc_ecma_codegen" }
|
2023-09-06 20:31:41 +03:00
|
|
|
swc_ecma_loader = { version = "0.44.4", path = "../swc_ecma_loader" }
|
2023-09-05 15:26:15 +03:00
|
|
|
swc_ecma_parser = { version = "0.140.0", path = "../swc_ecma_parser" }
|
2023-09-11 11:33:49 +03:00
|
|
|
swc_ecma_transforms = { version = "0.224.4", path = "../swc_ecma_transforms" }
|
2023-09-05 15:26:15 +03:00
|
|
|
swc_ecma_utils = { version = "0.123.0", path = "../swc_ecma_utils" }
|
2023-08-31 16:25:10 +03:00
|
|
|
swc_ecma_visit = { version = "0.95.1", path = "../swc_ecma_visit" }
|
2022-10-24 06:58:37 +03:00
|
|
|
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
|
2021-08-13 13:03:04 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-06-22 16:37:35 +03:00
|
|
|
pretty_assertions = "1.3"
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2023-08-31 16:25:10 +03:00
|
|
|
testing = { version = "0.34.1", path = "../testing" }
|