-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.json
31 lines (31 loc) · 1.57 KB
/
deno.json
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
30
31
{
"lock": true,
"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 --watch=server/static/,server/routes/ --unstable-kv server/dev.ts",
"build": "deno run -A --unstable-kv server/dev.ts build",
"preview": "deno run -A --unstable-kv server/main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"compile": "deno compile --output ./bin/datadance ./cli/index.ts"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"$std/": "https://deno.land/std@0.216.0/",
"mozjexl": "https://esm.sh/mozjexl@1.1.6",
"ace-builds": "https://esm.sh/ace-builds@1.35.4/src-noconflict/ace",
"ace-builds/src-noconflict/theme-dracula": "https://esm.sh/ace-builds@1.35.4/src-noconflict/theme-dracula",
"ace-builds/src-noconflict/ext-language_tools": "https://esm.sh/ace-builds@1.35.4/src-noconflict/ext-language_tools",
"@std/cli": "jsr:@std/cli@^1.0.1",
"jsonpath": "https://esm.sh/jsonpath@1.1.1",
"luxon": "https://esm.sh/luxon@3.5.0"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}