-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
51 lines (51 loc) · 1.6 KB
/
deno.json
File metadata and controls
51 lines (51 loc) · 1.6 KB
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
45
46
47
48
49
50
51
{
"lock": false,
"tasks": {
"css": "deno run -A npm:@tailwindcss/cli -i ./static/app.css -o ./static/styles.css --watch",
"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=routes/,static/assets/,static/app.css dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A 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.7.3/",
"@deno/gfm": "jsr:@deno/gfm@^0.10.0",
"@tailwindcss/postcss": "npm:@tailwindcss/postcss@^4.0.0",
"autoprefixer": "npm:autoprefixer@^10.4.20",
"postcss": "npm:postcss@^8.5.1",
"postcss-nested": "npm:postcss-nested@^7.0.2",
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
"@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/",
"tailwindcss": "npm:tailwindcss@^4.0.7"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto",
"deploy": {
"project": "6d2d6956-b230-4bcc-8d07-36e1d306d746",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "main.ts"
}
}