-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
deno.json
75 lines (75 loc) · 3.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"unstable": ["cron", "fs", "net"],
"tasks": {
"launch-server": "deno run -A --unstable mod.ts start",
"dev-server": "deno run -A --watch --unstable mod.ts start",
"build-openapi": "deno run -A --unstable mod.ts openapi",
"bundle": "deno bundle --unstable mod.ts bundle.js",
"compile": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver bundle.js",
"compile-win": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver.exe --target x86_64-pc-windows-msvc --no-terminal bundle.js",
"compile-lin": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver --target x86_64-unknown-linux-gnu bundle.js",
"compile-lin-arm": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver --target aarch64-unknown-linux-gnu bundle.js",
"compile-mac": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver --target x86_64-apple-darwin bundle.js",
"compile-mac-m1": "deno bundle --unstable mod.ts bundle.js && deno compile -A --unstable --output build/dappserver --target aarch64-apple-darwin bundle.js",
"test": "deno test -A --unstable --unstable-fs tests"
},
"compilerOptions": {
"allowJs": true,
"lib": ["deno.window", "deno.unstable"],
"strict": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false
},
"lint": {
"include": ["src/"],
"exclude": ["src/testdata/"],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
}
},
"fmt": {
"include": [
"src/"
],
"exclude": [
"src/testdata/",
"third_party/",
"node_modules/",
"cov/",
"apps/",
"vendor/",
"data/",
"users/",
"cli/",
"conf/"
]
},
"imports": {
"./mod.ts": "./mod.ts",
"https://deno.land/x/std/": "https://deno.land/[email protected]/",
"https://deno.land/x/std/io/": "https://deno.land/[email protected]/io/",
"https://deno.land/x/mysql/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/zip@/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/jszmq/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/gini/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/djwt/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/mustache/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/websocket/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/s3_lite_client/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/sqlite/": "https://deno.land/x/[email protected]/",
"webdav": "npm:webdav",
"https://deno.land/x/danet/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/danet_swagger/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/docker_deno/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/cliffy/": "https://deno.land/x/[email protected]/",
"https://deno.land/std/node/util.ts": "node:util",
"https://deno.land/std/node/events.ts": "node:events",
"https://deno.land/std/node/assert.ts": "node:assert",
"https://deno.land/std/node/url.ts": "node:url",
"https://deno.land/std/node/stream.ts": "node:stream"
},
"importMap": "./vendor/import_map.json"
}