-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
58 lines (58 loc) · 1.68 KB
/
deno.jsonc
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
48
49
50
51
52
53
54
55
56
57
58
{
"tasks": {
"start": "deno run --allow-read --allow-write --allow-net --allow-run --allow-env index.ts"
},
"compilerOptions": {
"lib": ["deno.unstable", "deno.ns"],
"strict": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
],
"include": [
"no-console",
"no-unused-vars",
"no-debugger",
"no-eval",
"require-await"
]
}
},
"fmt": {
"indentWidth": 2,
"semiColons": false,
"singleQuote": false,
"proseWrap": "preserve"
},
"imports": {
"@cliffy/command": "jsr:@cliffy/[email protected]",
"@david/which": "jsr:@david/which@^0.4.1",
"@infisical/sdk": "npm:@infisical/sdk@^3.0.4",
"@openbao/api": "jsr:@openbao/api@^0.0.3",
"@std/cache": "jsr:@std/cache@^0.1.3",
"@std/cli": "jsr:@std/cli@^1.0.17",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/fs": "jsr:@std/fs@^1.0.9",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/streams": "jsr:@std/streams@^1.0.8",
"@std/toml": "jsr:@std/toml@^1.0.2",
"@std/uuid": "jsr:@std/uuid@^1.0.4",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"ajv": "npm:ajv@^8.17.1",
"case": "https://deno.land/x/[email protected]/mod.ts",
"emoji": "https://deno.land/x/[email protected]/mod.ts",
"extract-zip": "https://esm.sh/[email protected]",
"pretty-error": "https://esm.sh/[email protected]",
"reflect-metadata": "npm:reflect-metadata@^0.2.2",
"~/": "./"
}
}