-
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/std@0.192.0/fmt/bytes.ts",
"std:duration": "https://deno.land/std@0.192.0/fmt/duration.ts",
"std:path": "https://deno.land/std@0.192.0/path/mod.ts",
"discordeno": "npm:@discordeno/bot@19.0.0-next.3445211",
"genius": "npm:genius-lyrics-api",
"commonTags": "npm:common-tags@1.8.2",
"fuse": "https://esm.sh/fuse.js@6.6.2",
"mathjs": "npm:mathjs@11.8.1",
"progressbar": "npm:string-progressbar@1.0.4",
"temporal": "npm:@js-temporal/polyfill@0.4.4",
"wtf_wiki": "https://esm.sh/wtf_wikipedia@10.1.5",
"axiod": "https://deno.land/x/axiod@0.26.2/mod.ts",
"axiodInterfaces": "https://deno.land/x/axiod@0.26.2/interfaces.ts",
"canvas": "https://deno.land/x/canvas@v1.4.1/mod.ts",
"colorConvert": "https://deno.land/x/color@v0.3.0/mod.ts",
"dom": "https://deno.land/x/deno_dom@v0.1.38/deno-dom-wasm.ts",
"exif": "https://deno.land/x/deno_exif@0.0.3/mod.ts",
"googleTranslate": "https://deno.land/x/gtr@v0.0.1/mod.ts",
"otpauth": "https://deno.land/x/otpauth@v9.1.3/dist/otpauth.esm.js",
"puppeteer": "https://deno.land/x/puppeteer@16.2.0/mod.ts",
"time": "https://deno.land/x/time.ts@v2.0.1/mod.ts"
}
}