eno/deno.jsonc

18 lines
559 B
Plaintext
Raw Normal View History

2022-12-01 17:10:59 -05:00
{
"compilerOptions": {"lib": [
"deno.window", "DOM"
]},
2023-03-31 06:55:54 -04:00
"imports": {
"react": "https://esm.sh/preact@10.13.2/compat",
2023-04-02 14:16:46 -04:00
"react-original": "https://esm.sh/preact@10.13.2/compat",
2023-04-05 20:05:21 -04:00
"@eno/app": "./example/app.tsx",
"@eno/iso": "./lib/iso.tsx"
2023-03-31 06:55:54 -04:00
},
2022-12-01 17:10:59 -05:00
"tasks":
{
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts",
2023-04-06 23:44:27 -04:00
"example": "cd example && pwd && deno task dev"
2022-12-01 17:10:59 -05:00
}
}