-
Notifications
You must be signed in to change notification settings - Fork 7
/
scripts.json
43 lines (43 loc) · 901 Bytes
/
scripts.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://deno.land/x/denon@2.4.8/schema.json",
"scripts": {
"test": {
"cmd": "deno test index.ts",
"desc": "Test Uwuifier"
},
"start": {
"cmd": "deno run index.ts",
"desc": "Start Uwuifier"
},
"build": {
"cmd": "deno run build.ts",
"desc": "Build Uwuifier"
},
"lint": {
"cmd": "deno lint **.ts",
"desc": "Lint Uwuifier"
},
"format": {
"cmd": "deno fmt **.ts",
"desc": "Format Uwuifier"
},
"compile": {
"cmd": "deno compile --target=x86_64-unknown-linux-gnu index.ts",
"desc": "Compile Uwuifier",
"allow": {
"run": "npm",
"env": "HOME,DENO_AUTH_TOKENS,DENO_DIR",
"read": true,
"write": true
}
}
},
"logger": {
"quiet": true,
"debug": true
},
"watcher": {
"exts": ["ts"],
"skip": ["dist/**"]
}
}