-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
31 lines (31 loc) · 1.21 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"imports": {
"lume/" : "https://deno.land/x/[email protected]/",
"lume_navbardata": "https://deno.land/x/[email protected]/mod.ts",
"datetime" : "https://deno.land/[email protected]/datetime/mod.ts",
"jsHighlighter" : "https://unpkg.com/@highlightjs/[email protected]/es/languages/javascript.min.js",
"lume_langdata" : "https://deno.land/x/[email protected]/mod.ts"
},
"tasks": {
"serve": {
"description": "Start the development server.",
"command" : "deno task lume --serve --port 3000"
},
"build": {
"description" : "Build the static website.",
"command" : "deno task lume",
"dependencies": []
},
"lume": {
"description": "[Internal] Base task for `serve` and `build`.",
"command" : "echo \"import 'lume/cli.ts'\" | deno run -A -"
},
"add_langdata": {
"description": "[Idempotent configuration] Imports the `lume_langdata` Lume plugin.",
"command" : "mdrb https://deno.land/x/lume_langdata/add_to_lume_project.md"
}
},
"compilerOptions": {
"types": ["lume/types.ts"]
}
}