uwap.name/deno.json
2026-01-20 15:43:05 +01:00

70 lines
1.5 KiB
JSON

{
"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
}