website/deno.json

16 lines
520 B
JSON
Raw Normal View History

2023-07-23 16:04:28 -04:00
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable --allow-write='.' --allow-read='.' --allow-net='deno.land,cdn.deno.land,esm.sh,0.0.0.0:8080' --allow-sys=networkInterfaces --allow-env='LUME_ENV' -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"imports": {
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
2023-07-26 15:24:34 -04:00
"lume/": "https://deno.land/x/lume@v1.18.3/"
2023-07-23 16:04:28 -04:00
}
}