-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
25 lines (25 loc) · 851 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
{
"compilerOptions": {
"lib": ["deno.unstable", "dom"]
},
"tasks": {
"start": "deno run -A --unstable-kv app.ts",
"build": "deno bundle --unstable src/main.ts dist/main.js"
},
"imports": {
"telegraf": "https://esm.sh/[email protected]",
"path": "https://deno.land/[email protected]/path/mod.ts",
"dotenv": "https://deno.land/x/[email protected]/mod.ts",
"cheerio": "https://esm.sh/[email protected]",
"CryptoJS":"https://esm.sh/[email protected]",
"esbuild": "https://deno.land/x/[email protected]/mod.js",
"cache": "./core/lib/cache.ts",
"kv": "./core/kv/db.ts",
"decrateor": "./core/lib/decrateor.ts",
"fs": "./core/lib/fs.ts",
"QingLong": "./core/lib/QingLong.ts",
"MongoDB": "./core/lib/MongoDB.ts",
"ToolClient": "./core/lib/ToolClient.ts",
"Utils": "./core/utils/index.ts"
}
}