forked from lumeland/theme-simple-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (39 loc) · 843 Bytes
/
deno.json
File metadata and controls
39 lines (39 loc) · 843 Bytes
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
32
33
34
35
36
37
38
39
{
"imports": {
"lume/": "https://deno.land/x/lume@v3.0.4/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.12.0/",
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.10/jsx-runtime.ts"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"update-deps": "deno run -A --quiet 'https://deno.land/x/nudd@v0.2.10/cli.ts' update plugins.ts deno.json",
"cms": "deno task lume cms"
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "react-jsx",
"jsxImportSource": "lume"
},
"lint": {
"exclude": [
"./_site"
],
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"exclude": [
"./_site"
]
},
"unstable": [
"temporal"
]
}