website/deno.json

29 lines
940 B
JSON
Raw Normal View History

2023-07-23 16:04:28 -04:00
{
"compilerOptions": {
"jsx": "react-jsx",
2023-12-09 10:45:00 -05:00
"jsxImportSource": "npm:react",
"types": [
"https://unpkg.com/@types/react@18.2.37/index.d.ts",
"lume/types.ts"
]
2023-07-23 16:04:28 -04:00
},
"tasks": {
2024-02-23 17:10:00 -05:00
"lume": "echo \"import 'lume/cli.ts'\" | deno run --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,LUME_LIVE_RELOAD,LUME_LOGS,LUME_NOCACHE,LUME_DRAFTS' -",
2023-07-23 16:04:28 -04:00
"build": "deno task lume",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
2023-08-01 21:54:11 -04:00
"serve": "deno task lume -s",
"deploy": "rsync -avh --progress --delete ./_site/ podman:/srv/www/fosterhangdaan.com/"
2023-07-23 16:04:28 -04:00
},
"imports": {
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
2024-03-15 00:14:07 -04:00
"lume/": "https://deno.land/x/lume@v2.1.2/"
},
"fmt": {
"exclude": [
"LICENSE*",
"COPYING",
"_site/"
]
2023-07-23 16:04:28 -04:00
}
}