-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
41 lines (41 loc) · 1.01 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
{
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
],
"strictNullChecks": false
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
}
},
"imports": {
"@aws-sdk/client-s3": "npm:@aws-sdk/client-s3@^3.689.0",
"@david/dax": "jsr:@david/dax@^0.42.0",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@std/path": "jsr:@std/path@^1.0.8",
"assemblyai": "npm:assemblyai@^4.8.0",
"dayjs": "npm:dayjs@^1.11.13",
"eta": "npm:eta@^3.5.0",
"jsome": "npm:jsome@^2.5.0",
"openai": "npm:openai@^4.72.0",
"s3Client": "npm:@aws-sdk/client-s3@^3.689.0"
},
"tasks": {
"formatter": "deno run -A formatter.ts",
"transcriber": "deno run -A transcriber.ts"
}
}