-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
100 lines (100 loc) · 2.27 KB
/
Copy pathdeno.json
File metadata and controls
100 lines (100 loc) · 2.27 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"imports": {
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@3.2.4/",
"lume/jsx-runtime": "https://cdn.jsdelivr.net/gh/oscarotero/ssx@0.1.15/jsx-runtime.ts"
},
"unstable": [
"kv",
"temporal",
"fmt-component"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "lume",
"types": [
"lume/types.ts"
]
},
"tasks": {
"build": {
"description": "Build the site for production",
"command": "deno task lume"
},
"serve": {
"description": "Run and serve the site for development",
"command": "deno task lume -s"
},
"dev": "deno task serve",
"start": {
"description": "Run the built dynamic server locally",
"command": "deno run --allow-read --allow-net --allow-env --unstable-kv serve.ts"
},
"image:blog": {
"description": "Resize and compress a blog image to 1600x900 JPEG",
"command": "sh -c 'magick \"$1\" -auto-orient -resize \"1600x900^\" -gravity center -extent 1600x900 -strip -colorspace sRGB -quality 84 \"$2\"' --"
},
"lume": {
"description": "Run Lume command",
"command": "deno run -P=lume lume/cli.ts"
}
},
"lint": {
"plugins": [
"https://cdn.jsdelivr.net/gh/lumeland/lume@3.2.4/lint.ts"
],
"rules": {
"exclude": [
"no-import-prefix"
]
}
},
"deploy": {
"org": "rix1",
"app": "rix1-dev",
"project": "1be252bb-80ef-43c4-996a-9b8e603e330b",
"build": "deno task build",
"runtime": {
"type": "dynamic",
"entrypoint": "./serve.ts"
},
"exclude": [
"**/node_modules"
],
"include": []
},
"permissions": {
"lume": {
"read": true,
"write": [
"./"
],
"import": [
"cdn.jsdelivr.net:443",
"jsr.io:443",
"deno.land:443",
"esm.sh:443"
],
"net": [
"0.0.0.0",
"cdn.jsdelivr.net:443",
"data.jsdelivr.com:443",
"jsr.io:443",
"deno.land:443",
"esm.sh:443",
"fonts.googleapis.com:443",
"fonts.gstatic.com:443",
"registry.npmjs.org:443"
],
"env": true,
"run": true,
"ffi": true,
"sys": true
}
},
"allowScripts": {
"deny": [
"npm:sharp"
]
},
"lock": false
}