init
This commit is contained in:
commit
f5d9aece1e
13 changed files with 313 additions and 0 deletions
70
deno.json
Normal file
70
deno.json
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
{
|
||||
"imports": {
|
||||
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@3.1.4/",
|
||||
"lume/jsx-runtime": "https://cdn.jsdelivr.net/gh/oscarotero/ssx@0.1.14/jsx-runtime.ts",
|
||||
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.14.11/"
|
||||
},
|
||||
"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
|
||||
}
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"serve": {
|
||||
"description": "Run and serve the site for development",
|
||||
"command": "deno task lume -s"
|
||||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"types": [
|
||||
"lume/types.ts"
|
||||
],
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "lume"
|
||||
},
|
||||
"unstable": [
|
||||
"temporal",
|
||||
"fmt-component"
|
||||
],
|
||||
"lint": {
|
||||
"plugins": [
|
||||
"https://cdn.jsdelivr.net/gh/lumeland/lume@3.1.4/lint.ts"
|
||||
],
|
||||
"rules": {
|
||||
"exclude": [
|
||||
"no-import-prefix"
|
||||
]
|
||||
}
|
||||
},
|
||||
"lock": false
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue