-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
11 lines (11 loc) · 837 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
{
"tasks": {
"dev": "deno run --allow-net --allow-env main.ts",
"build": "deno compile --allow-net --allow-env --no-check main.ts",
"build-win": "deno compile --allow-net --allow-env --no-check -o build/win.exe --target x86_64-pc-windows-msvc main.ts",
"build-mac-x86": "deno compile --allow-net --allow-env --no-check -o build/mac-x86 --target x86_64-apple-darwin main.ts",
"build-mac-arm": "deno compile --allow-net --allow-env --no-check -o build/mac-arm --target aarch64-apple-darwin main.ts",
"build-linux-x86": "deno compile --allow-net --allow-env --no-check -o build/linux-x86 --target x86_64-unknown-linux-gnu main.ts",
"build-linux-arm": "deno compile --allow-net --allow-env --no-check -o build/linux-arm --target aarch64-unknown-linux-gnu main.ts"
}
}