1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Super-fast TypeScript stripper based on SWC"
documentation = "https://rustdoc.swc.rs/swc_fast_type_strip/"
edition = { workspace = true }
include = ["Cargo.toml", "src/**/*.rs"]
license = { workspace = true }
name = "swc_ts_fast_strip"
repository = { workspace = true }
version = "29.0.0"
[features]
default = []
[dependencies]
anyhow = { workspace = true }
bytes-str = { workspace = true }
serde = { workspace = true, features = ["derive"] }
swc_atoms = { version = "7.0.0", path = "../swc_atoms" }
swc_common = { version = "14.0.2", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "22.0.3", path = "../swc_ecma_parser", default-features = false, features = [
"typescript",
"unstable",
] }
swc_ecma_transforms_base = { version = "24.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "26.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "26.0.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_visit = { version = "14.0.0", path = "../swc_ecma_visit" }
[dev-dependencies]
testing = { version = "15.0.0", path = "../testing" }
|