-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
executable file
·48 lines (45 loc) · 1.69 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
47
48
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"compilerOptions": {
"noImplicitAny": false,
"types": ["./mod.d.ts"],
"jsxFactory": "window.createElement",
"jsxFragmentFactory": "window.Fragment"
},
"lint": {
"include": ["src/"],
"exclude": ["src/old/"],
"rules": {
"tags": ["recommended"],
"include": ["eqeqeq", "no-await-in-loop"],
"exclude": ["no-explicit-any"]
}
},
"imports": {
"bot": "./src/bot.ts",
"log": "./src/log.ts",
"jsx": "./src/jsx/mod.ts",
"modules": "./src/modules/mod.ts",
"std:bytes": "https://deno.land/[email protected]/fmt/bytes.ts",
"std:duration": "https://deno.land/[email protected]/fmt/duration.ts",
"std:path": "https://deno.land/[email protected]/path/mod.ts",
"discordeno": "npm:@discordeno/[email protected]",
"genius": "npm:genius-lyrics-api",
"commonTags": "npm:[email protected]",
"fuse": "https://esm.sh/[email protected]",
"mathjs": "npm:[email protected]",
"progressbar": "npm:[email protected]",
"temporal": "npm:@js-temporal/[email protected]",
"wtf_wiki": "https://esm.sh/[email protected]",
"axiod": "https://deno.land/x/[email protected]/mod.ts",
"axiodInterfaces": "https://deno.land/x/[email protected]/interfaces.ts",
"canvas": "https://deno.land/x/[email protected]/mod.ts",
"colorConvert": "https://deno.land/x/[email protected]/mod.ts",
"dom": "https://deno.land/x/[email protected]/deno-dom-wasm.ts",
"exif": "https://deno.land/x/[email protected]/mod.ts",
"googleTranslate": "https://deno.land/x/[email protected]/mod.ts",
"otpauth": "https://deno.land/x/[email protected]/dist/otpauth.esm.js",
"puppeteer": "https://deno.land/x/[email protected]/mod.ts",
"time": "https://deno.land/x/[email protected]/mod.ts"
}
}