-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 724 Bytes
/
Copy pathdeno.json
File metadata and controls
31 lines (31 loc) · 724 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
28
29
30
31
{
"name": "@hyperpolymath/error-lang",
"version": "0.1.0",
"exports": "./cli/main.js",
"tasks": {
"run": "deno run --allow-read --allow-write cli/runtime.js",
"doctor": "deno run cli/main.js doctor",
"explain": "deno run cli/main.js explain",
"test": "deno test --allow-read --allow-write",
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check cli/runtime.js"
},
"imports": {
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0"
},
"compilerOptions": {
"strict": true
},
"fmt": {
"indentWidth": 2,
"singleQuote": false
},
"lint": {
"rules": {
"tags": ["recommended"]
}
}
}