-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
35 lines (35 loc) · 1.5 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
32
33
34
35
{
"lock": false,
"unstable": ["kv"],
"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=static/,routes/ dev.ts",
"build-styles": "deno run -A npm:[email protected]/csso --input static/styles.css --output _fresh/static/styles.css",
"build": "deno run -A dev.ts build && deno task build-styles",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 80, "singleQuote": true },
"exclude": ["**/_fresh/*", ".direnv"],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"$std/": "https://deno.land/[email protected]/",
"log": "https://deno.land/[email protected]/log/mod.ts",
"ulid": "https://deno.land/[email protected]/ulid/mod.ts",
"@akamfoad/qrcode": "npm:@akamfoad/[email protected]"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"deploy": {
"project": "11a1aba9-53a3-43f3-bdfe-c83a8f4b2481",
"exclude": ["**/node_modules"],
"include": [],
"entrypoint": "main.ts"
}
}