-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
44 lines (44 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
36
37
38
39
40
41
42
43
44
{
"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 task dev",
"dev": "deno run -A --watch=./fresh/static/,./fresh/routes/ ./fresh/dev.ts",
"build": "deno run -A ./fresh/dev.ts build",
"preview": "deno run -A ./fresh/main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ./fresh",
"wallpapers": "deno run --allow-net --allow-read --allow-write wallpapers.ts",
"markdown": "deno run --allow-read --allow-write markdown.ts"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*",
"**/clarity.js"
],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.2/",
"$std/": "https://deno.land/std@0.224.0/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.3.0",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.8.0",
"@spawn/git": "jsr:@spawn/git@^0.0.1",
"preact": "https://esm.sh/preact@10.24.2",
"preact/": "https://esm.sh/preact@10.24.2/",
"tailwindcss": "https://esm.sh/tailwindcss@3.4.13",
"tailwindcss/": "https://esm.sh/tailwindcss@3.4.13/",
"tailwindcss/plugin": "https://esm.sh/tailwindcss@3.4.13/plugin.js"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}