mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
18 lines
760 B
JSON
18 lines
760 B
JSON
{
|
|
"imports": {
|
|
"std/": "https://deno.land/[email protected]/",
|
|
"deno_dom/": "https://deno.land/x/[email protected]/",
|
|
"sqlite/": "https://deno.land/x/[email protected]/"
|
|
},
|
|
"tasks": {
|
|
"dev": "deno run --watch main.ts",
|
|
"test": "deno test --allow-read=./config.json,./test --allow-net --allow-write=./test --allow-run=tasklist.exe --unstable",
|
|
"run": "deno run --allow-read=./config.json,./downloads --allow-write=./downloads --allow-run=tasklist.exe --allow-net --unstable",
|
|
"compile": "deno compile --allow-read=./config.json,./downloads --allow-write=./downloads --allow-run=tasklist.exe --allow-net --unstable"
|
|
},
|
|
"fmt": {
|
|
"indentWidth": 4,
|
|
"exclude": ["config.json"]
|
|
}
|
|
}
|