2019-09-02 17:07:11 -04:00
|
|
|
[package]
|
|
|
|
name = "deno_typescript"
|
2020-03-23 17:14:34 -04:00
|
|
|
version = "0.37.1"
|
2019-09-02 17:07:11 -04:00
|
|
|
license = "MIT"
|
|
|
|
description = "To compile TypeScript to a snapshot during build.rs"
|
2019-10-03 01:32:22 -04:00
|
|
|
repository = "https://github.com/denoland/deno"
|
2019-09-15 18:36:27 -04:00
|
|
|
authors = ["the Deno authors"]
|
2019-09-02 17:07:11 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-09-15 18:36:27 -04:00
|
|
|
exclude = [
|
|
|
|
"typescript/tests/*",
|
|
|
|
"typescript/src/*",
|
|
|
|
"typescript/scripts/*",
|
|
|
|
"typescript/doc/*",
|
|
|
|
"typescript/lib/*/*.json",
|
|
|
|
]
|
|
|
|
|
2019-09-02 17:07:11 -04:00
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-03-23 17:14:34 -04:00
|
|
|
deno_core = { path = "../core", version = "0.37.1" }
|
2020-03-07 15:51:23 -05:00
|
|
|
serde_json = "1.0.48"
|
2020-01-05 11:41:54 -05:00
|
|
|
serde = { version = "1.0.104", features = ["derive"] }
|