2022-12-01 17:10:59 -05:00
|
|
|
{
|
2023-03-29 22:43:23 -04:00
|
|
|
"compilerOptions": {"lib": [
|
|
|
|
"deno.window", "DOM"
|
|
|
|
]},
|
2023-03-31 06:55:54 -04:00
|
|
|
"imports": {
|
2023-04-02 00:06:27 -04:00
|
|
|
"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":
|
|
|
|
{
|
2023-03-29 22:43:23 -04:00
|
|
|
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
|
2023-04-05 20:05:21 -04:00
|
|
|
"run": "deno run -A --unstable --no-lock server.tsx 4507",
|
|
|
|
"complete": "deno task run & cd example && pwd && deno task dev"
|
2022-12-01 17:10:59 -05:00
|
|
|
}
|
|
|
|
}
|