-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 607 Bytes
/
deno.json
File metadata and controls
25 lines (25 loc) · 607 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
{
"nodeModulesDir": "auto",
"tasks": {
"upload": "deno run --allow-read --allow-write --allow-env --allow-net src/cli.ts upload",
"clean": "deno run --allow-read --allow-write --allow-env --allow-net src/cli.ts clean"
},
"imports": {
"dropbox": "npm:dropbox@^10.34.0",
"@std/dotenv": "jsr:@std/dotenv@^0.225.0",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/fs": "jsr:@std/fs@^1.0.8"
},
"fmt": {
"useTabs": true,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["src/"]
},
"lint": {
"include": ["src/"]
}
}