forked from ker0olos/fable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
47 lines (47 loc) · 1.77 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"prefer-ascii",
"camelcase",
"eqeqeq",
"no-const-assign",
"no-eval",
"no-non-null-assertion",
"no-throw-literal",
"no-sparse-arrays",
"explicit-function-return-type",
"no-external-import"
]
},
"exclude": ["images-proxy", "dyn-images"]
},
"lock": false,
"unstable": ["kv"],
"tasks": {
"discord": "deno run -A --env update_commands.ts",
"start": "deno run --unstable-hmr --env -A src/interactions.ts",
"tunnel": "concurrently \"deno task start\" \"ngrok http 127.0.0.1:8000\" \"deno task tunnel_url\"",
"tunnel_url": "timeout 300 bash -c 'until echo > /dev/tcp/localhost/4040; do sleep 1; done' && curl -Ss http://localhost:4040/api/tunnels | jq -C \".tunnels[0].public_url\"",
"udd": "deno run -A https://deno.land/x/udd/main.ts deno.json"
},
"fmt": {
"useTabs": false,
"singleQuote": true,
"indentWidth": 2,
"exclude": ["images-proxy", "dyn-images", "packs/anilist/pool.json"]
},
"imports": {
"$std/": "https://deno.land/[email protected]/",
"ajv": "https://esm.sh/[email protected]",
"awesome-ajv": "https://esm.sh/[email protected]",
"dax": "https://deno.land/x/[email protected]/mod.ts",
"levenshtein": "https://raw.githubusercontent.com/ka-weihe/fastest-levenshtein/1.0.15/mod.ts",
"sentry": "https://raw.githubusercontent.com/timfish/sentry-deno/fb3c482d4e7ad6c4cf4e7ec657be28768f0e729f/src/mod.ts",
"sift": "https://raw.githubusercontent.com/ker0olos/sift/62110006c2d070fa6f00d5007a3a19dea6cd1d4d/mod.ts",
"lru": "https://deno.land/x/[email protected]/mod.ts",
"tweetnacl": "https://esm.sh/[email protected]",
"ulid": "https://deno.land/x/[email protected]/mod.ts"
}
}