-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
53 lines (53 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
{
"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 --watch=static/,routes/ 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.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",
"@std/encoding": "jsr:@std/encoding@^1.0.5",
"@takker/md5": "jsr:@takker/md5@^0.1.0",
"brotli": "https://deno.land/x/brotli@0.1.7/mod.ts",
"components/": "./components/",
"hooks/": "./hooks/",
"islands/": "./islands/",
"lib/": "./lib/",
"openai": "https://deno.land/x/openai@v4.67.3/mod.ts",
"preact": "https://esm.sh/preact@10.24.1",
"preact/": "https://esm.sh/preact@10.24.1/",
"routes/": "./routes/",
"tailwindcss": "npm:tailwindcss@3.4.13",
"tailwindcss/": "npm:/tailwindcss@3.4.13/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.13/plugin.js",
"zod": "https://deno.land/x/zod@v3.23.8/mod.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": true,
"unstable": ["kv"],
"fmt": {
"lineWidth": 120
}
}