summaryrefslogtreecommitdiff
path: root/deno.json
blob: c3513ef58bf669ff36809a74869aa6ed8156178a (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"
		]
	}
}