-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
47 lines (47 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
{
"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/ --unstable-kv dev.ts",
"build": "deno run -A --unstable-kv 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/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"@atproto/api": "npm:@atproto/api@^0.13.11",
"@preact-icons/common": "jsr:@preact-icons/common@^1.0.12",
"@preact-icons/lu": "jsr:@preact-icons/lu@^1.0.12",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@radix-ui/react-slot": "npm:@radix-ui/react-slot@^1.1.0",
"class-variance-authority": "npm:class-variance-authority@^0.7.0",
"clsx": "npm:clsx@^2.1.1",
"preact": "npm:[email protected]",
"preact/hooks": "npm:[email protected]/hooks",
"preact/jsx-runtime": "npm:[email protected]/jsx-runtime",
"tailwind-merge": "npm:tailwind-merge@^2.5.3",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}