-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
46 lines (46 loc) · 1.45 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
{
"name": "@annervisser/pr-cli",
"version": "1.12.0",
"exports": "./main.ts",
"tasks": {
"lint": "./bin/lint",
"e2e": "./bin/e2e"
},
"exclude": ["e2e-test", ".idea"],
"fmt": {
"useTabs": true,
"singleQuote": true,
"lineWidth": 100
},
"compilerOptions": {
"strict": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"useUnknownInCatchVariables": false
},
"imports": {
"@annervisser/slug": "jsr:@annervisser/slug@^1.2.0",
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.7",
"@cliffy/ansi/colors": "jsr:@cliffy/ansi@^1.0.0-rc.7/colors",
"@cliffy/ansi/tty": "jsr:@cliffy/ansi@^1.0.0-rc.7/tty",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@cliffy/command/completions": "jsr:@cliffy/command@^1.0.0-rc.7/completions",
"@cliffy/command/help": "jsr:@cliffy/command@^1.0.0-rc.7/help",
"@cliffy/flags": "jsr:@cliffy/flags@^1.0.0-rc.7",
"@cliffy/keypress": "jsr:@cliffy/keypress@^1.0.0-rc.7",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.7",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.7",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/fs": "jsr:@std/fs@^1.0.4",
"@std/log": "jsr:@std/log@^0.224.9",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/semver": "jsr:@std/semver@^1.0.3"
}
}