blob: 5e8efc836bf283d680514bdef983a6b9c07bcd8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"imports": {
"lume/": "https://deno.land/x/[email protected]/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --allow-net --allow-read=./ --allow-write=./_site,./dist --allow-sys -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"fmt": {
"useTabs": true
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
}
}
|