-
Notifications
You must be signed in to change notification settings - Fork 4
/
deno.json
27 lines (27 loc) · 832 Bytes
/
deno.json
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
{
"version": "latest",
"description": "A secure runtime for JavaScript and TypeScript",
"homepage": "https://deno.land",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/denoland/deno/releases/download/v1.27.1/deno-x86_64-pc-windows-msvc.zip",
"hash": "sha256:e16db71a80613bc7080eccc09037a2f1dccc5ded14a728f44dee42061c2d9723"
}
},
"#:env_set": "* avoid annoying (bad UI/UX) update checks (added with v1.27+)",
"env_set": { "DENO_NO_UPDATE_CHECK": "1" },
"bin": "deno.exe",
"post_install": [
"# update to latest version",
"& $dir\\deno upgrade"
],
"checkver": { "github": "https://github.com/denoland/deno" },
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/denoland/deno/releases/download/v$version/deno-x86_64-pc-windows-msvc.zip"
}
}
}
}