-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
27 lines (21 loc) · 1.09 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
{
"tasks": {
"start": "deno run -A --watch=./src --unstable-kv mod.ts",
"start:nowatch": "deno run -A --unstable-kv mod.ts",
"compile": "deno compile -A --unstable-kv --no-check",
"compile:windows": "deno task compile --target=x86_64-pc-windows-msvc --output ./build/at_windows ./mod.ts",
"compile:linux": "deno task compile --target=x86_64-unknown-linux-gnu --output ./build/at_linux ./mod.ts",
"compile:linux_aarch64": "deno task compile --target=aarch64-unknown-linux-gnu --output ./build/at_linux_aarch64 ./mod.ts",
"compile:darwin": "deno task compile --target=x86_64-apple-darwin --output ./build/at_darwin ./mod.ts",
"compile:current": "deno task compile --output ./server ./mod.ts",
"build": "(deno task compile:linux) & (deno task compile:linux_aarch64) & (deno task compile:darwin) & (deno task compile:windows)"
},
"imports": {
"@oh/utils": "jsr:@oh/[email protected]",
"modules/": "./src/modules/",
"shared/": "./src/shared/",
"loadenv": "https://deno.land/x/[email protected]/mod.ts",
"ovh": "npm:[email protected]"
},
"nodeModulesDir": "auto"
}