able-baker/deno.jsonc

26 lines
841 B
Plaintext
Raw Normal View History

2023-08-01 17:23:19 -04:00
{
2023-08-13 11:00:48 -04:00
"imports": {
2023-09-24 09:19:50 -04:00
"react": "https://esm.sh/preact@10.17.1/compat",
"react/": "https://esm.sh/preact@10.17.1/compat/",
2023-08-28 22:16:56 -04:00
">able/": "http://localhost:4507/",
2023-09-24 09:19:50 -04:00
">able/app.tsx": "./app.tsx",
"@preact/signals": "https://esm.sh/@preact/signals@1.2.1"
2023-08-13 11:00:48 -04:00
},
2023-08-28 22:16:56 -04:00
"tasks": {
"check": "deno run -A --no-lock http://localhost:4507/cli.tsx check",
"local": "deno run -A --no-lock http://localhost:4507/cli.tsx local",
"debug": "deno run -A --no-lock http://localhost:4507/cli.tsx debug",
"serve": "deno run -A --no-lock http://localhost:4507/cli.tsx serve",
2023-09-24 09:19:50 -04:00
"cloud": "deno run -A --no-lock http://localhost:4507/cli.tsx cloud",
"install": "deno install -A -r -f http://localhost:4507/cli.tsx"
2023-08-28 22:16:56 -04:00
},
2023-08-13 11:00:48 -04:00
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"lib": [
"deno.window",
"dom",
"dom.asynciterable"
]
}
2023-08-01 17:23:19 -04:00
}