-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
41 lines (41 loc) · 981 Bytes
/
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": {
"strict": true,
"types": []
},
"imports": {
"std/": "https://deno.land/[email protected]/",
"opengraph": "https://deno.land/x/[email protected]/mod.ts",
"discord.js": "npm:[email protected]",
"openai": "npm:[email protected]",
"pyodide": "npm:[email protected]",
"mime-types": "npm:[email protected]",
"chromadb": "npm:[email protected]"
},
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env --allow-net src/main.ts",
"deploy": "deno run --allow-read --allow-env --allow-net src/deploy.ts",
"dev": "deno run --allow-read --allow-env --allow-net --watch src/main.ts",
"db": "chroma run --path ./chroma"
},
"lint": {
"include": [
"src/"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"include": [
"src/"
]
}
}