-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
48 lines (48 loc) · 1.65 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
{
"lock": "deno.lock",
"tasks": {
"lint": "deno lint && deno fmt --check && deno check ./src/run-lp.ts && deno check ./src/run-wh.ts"
},
"imports": {
"@/": "./src/",
"async": "https://deno.land/[email protected]/async/mod.ts",
"dotenv": "https://deno.land/[email protected]/dotenv/mod.ts",
"testing": "https://deno.land/[email protected]/testing/asserts.ts",
"server": "https://deno.land/[email protected]/http/server.ts",
"grammy": "https://deno.land/x/[email protected]/mod.ts",
"grammy/types": "https://deno.land/x/[email protected]/types.ts",
"grammy-i18n": "https://deno.land/x/[email protected]/mod.ts",
"grammy-menu": "https://deno.land/x/[email protected]/mod.ts",
"grammy-runner": "https://deno.land/x/[email protected]/mod.ts",
"grammy-parse-mode": "https://deno.land/x/[email protected]/mod.ts",
"grammy-ratelimiter": "https://deno.land/x/[email protected]/mod.ts",
"grammy-conversations": "https://deno.land/x/[email protected]/mod.ts",
"grammy-storage-adapter-redis": "https://deno.land/x/[email protected]/redis/src/mod.ts",
"grammy-transformer-throttler": "https://deno.land/x/[email protected]/mod.ts",
"notion": "https://esm.sh/@notionhq/[email protected]",
"redis": "https://deno.land/x/[email protected]/mod.ts"
},
"fmt": {
"files": {
"include": [
"src/",
"test/",
"deno.json"
]
},
"options": {
"useTabs": false,
"indentWidth": 2,
"lineWidth": 88,
"semiColons": true,
"singleQuote": false
}
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns",
"deno.unstable"
]
}
}