-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
50 lines (50 loc) · 1.31 KB
/
deno.json
File metadata and controls
50 lines (50 loc) · 1.31 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"tasks": {
"update:daily": "LD_LIBRARY_PATH=\"\" deno run -R -W -E=HOME,XDG_CONFIG_HOME,XDG_CACHE_HOME,USERPROFILE,AppData,LocalAppData --allow-run=git,powershell.exe ./src/update_daily.ts",
"devenv:build": "LD_LIBRARY_PATH=\"\" deno run -P=devenv:build src/devenv_build.ts",
"devenv:save": "LD_LIBRARY_PATH=\"\" deno run -P=devenv:save src/devenv_save.ts",
"devenv:pull": "LD_LIBRARY_PATH=\"\" deno run -P=devenv:pull src/devenv_pull.ts"
},
"imports": {
"#/": "./src/"
},
"permissions": {
"devenv:save": {
"read": true,
"write": true,
"run": ["git", "podman", "gzip"],
"env": [
"HOME",
"XDG_CONFIG_HOME",
"XDG_CACHE_HOME",
"HTTP_PROXY",
"HTTPS_PROXY",
"http_proxy",
"https_proxy",
"NO_PROXY",
"no_proxy",
"SSL_CERT_FILE"
]
},
"devenv:pull": {
"read": true,
"write": true,
"run": ["git", "ssh", "scp", "podman"],
"env": ["HOME", "XDG_CACHE_HOME"]
},
"devenv:build": {
"read": ["./devenv_ver"],
"write": ["./devenv_ver"],
"run": ["git", "podman"],
"env": [
"HTTP_PROXY",
"HTTPS_PROXY",
"http_proxy",
"https_proxy",
"NO_PROXY",
"no_proxy",
"SSL_CERT_FILE"
]
}
}
}