-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
27 lines (27 loc) · 766 Bytes
/
deno.json
File metadata and controls
27 lines (27 loc) · 766 Bytes
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
{
"name": "primascriptura",
"version": "1.0.0",
"description": "A Discord Bible bot built with Deno - delivers scripture directly from Discord",
"tasks": {
"start": "deno run --allow-net --allow-read --allow-env --allow-write src/main.ts",
"dev": "deno run --watch --allow-net --allow-read --allow-env --allow-write src/main.ts",
"deploy": "deno run --allow-net --allow-read --allow-env src/deploy.ts",
"test": "deno test --allow-net --allow-read --allow-env tests/"
},
"imports": {
"discord.js": "npm:discord.js@^14.14.0"
},
"compilerOptions": {
"strict": true,
"lib": ["deno.ns", "dom"]
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"indentWidth": 2,
"lineWidth": 100
}
}