-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.jsonc
29 lines (29 loc) · 1.31 KB
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --unstable --watch=static/,routes/ dev.ts",
"build": "deno run -A --unstable dev.ts build",
"preview": "deno run -A --unstable main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.3/",
"preact": "https://esm.sh/preact@10.19.2",
"preact/": "https://esm.sh/preact@10.19.2/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.1",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
"$std/": "https://deno.land/std@0.212.0/",
"blockly": "https://esm.sh/blockly@10.3.0",
"@blockly/theme-dark": "https://esm.sh/@blockly/theme-dark@6.0.5",
"deno_kv_oauth/": "https://deno.land/x/deno_kv_oauth@v0.10.0/",
"deno_kv_insights/": "https://deno.land/x/deno_kv_insights@v0.8.0-beta/",
"boolean/": "https://deno.land/x/boolean@0.0.1/",
"#/": "./"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}