-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdeno.json
More file actions
75 lines (75 loc) · 1.81 KB
/
Copy pathdeno.json
File metadata and controls
75 lines (75 loc) · 1.81 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
{
"importMap": "./import_map.json",
"nodeModulesDir": "auto",
"tasks": {
"lume": {
"description": "Run Lume command",
"command": "DENO_DIR=_vendor deno run -P=lume lume/cli.ts"
},
"build": {
"description": "Build the site for production",
"command": "LUME_LOGS=warn deno task lume"
},
"serve": {
"description": "Run and serve the site for development",
"command": "DENO_V8_FLAGS=--max-old-space-size=8192 LUME_LOGS=warn deno task lume -s --location=http://localhost:9010/documentation"
},
"check-links": "deno run -A _scripts/check-links.ts",
"check-images": "deno run -A _scripts/check-images.ts",
"serve:local-docshots": "ln -sfn ../app/app/assets/e2e/screenshots local-docshots && DENO_V8_FLAGS=--max-old-space-size=8192 DOCSHOTS_LOCAL=1 deno task serve"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "lume",
"types": [
"lume/types.ts"
],
"skipLibCheck": true
},
"unstable": [
"temporal",
"fmt-component"
],
"lint": {
"plugins": [
"https://cdn.jsdelivr.net/gh/lumeland/lume@3.2.1/lint.ts"
],
"exclude": [
"assets/js/site.js",
"_includes/scripts/alpine.js"
],
"rules": {
"exclude": [
"no-import-prefix"
]
}
},
"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",
"registry.npmjs.org:443"
],
"env": true,
"run": true,
"ffi": true,
"sys": true
}
},
"lock": false
}