-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
36 lines (36 loc) · 1000 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
{
"tasks": {
"dev": "deno run -A",
"plugin-export": "deno run -A tools/plugin.ts ./plugins",
"start": "deno run --allow-all see.ts",
"build": "deno compile --allow-all -o build/see see.ts"
},
"imports": {
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.5",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.5",
"@std/collections": "jsr:@std/collections@^1.0.5",
"@std/crypto": "jsr:@std/crypto@^1.0.3",
"@std/encoding": "jsr:@std/encoding@^1.0.3",
"@std/fs": "jsr:@std/fs@^1.0.2",
"@std/media-types": "jsr:@std/media-types@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.3",
"@utils/": "./utils/",
"cheerio": "npm:cheerio@^1.0.0",
"dayjs": "npm:dayjs@^1.11.13",
"qrcode": "https://deno.land/x/[email protected]/mod.js"
},
"unstable": [
"bare-node-builtins"
],
"compilerOptions": {
"lib": [
"deno.window",
"ESNEXT",
"DOM"
],
"noImplicitAny": false
},
"fmt": {
"singleQuote": true
}
}