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