-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
84 lines (84 loc) · 1.71 KB
/
deno.json
File metadata and controls
84 lines (84 loc) · 1.71 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"imports": {
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@3.1.3/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.14.4/",
"lume/jsx-runtime": "https://cdn.jsdelivr.net/gh/oscarotero/ssx@0.1.14/jsx-runtime.ts"
},
"nodeModulesDir": "auto",
"tasks": {
"lume": {
"description": "Run Lume command",
"command": "deno run -P=lume lume/cli.ts"
},
"build": {
"description": "Build the site for production",
"command": "deno task lume"
},
"upgrade": {
"description": "Update the site for production",
"command": "deno task lume upgrade"
},
"serve": {
"description": "Run and serve the site for development",
"command": "deno task lume -s"
}
},
"compilerOptions": {
"types": [
"lume/types.ts"
],
"jsx": "react-jsx",
"jsxImportSource": "lume"
},
"lint": {
"exclude": [
"./output"
],
"rules": {
"tags": [
"recommended"
],
"exclude": [
"no-import-prefix"
]
},
"plugins": [
"https://cdn.jsdelivr.net/gh/lumeland/lume@3.1.3/lint.ts"
]
},
"fmt": {
"exclude": [
"./output"
]
},
"unstable": [
"temporal",
"fmt-component"
],
"permissions": {
"lume": {
"read": true,
"write": [
"./"
],
"import": [
"cdn.jsdelivr.net:443",
"jsr.io:443",
"deno.land:443",
"esm.sh:443"
],
"net": [
"0.0.0.0",
"jsr.io:443",
"cdn.jsdelivr.net:443",
"data.jsdelivr.com:443",
"registry.npmjs.org:443"
],
"env": true,
"run": true,
"ffi": true,
"sys": true
}
},
"lock": true
}