-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
27 lines (27 loc) · 1.2 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
{
"lock": false,
"tasks": {
"start": "deno run -A --watch=static/,routes/,posts/ dev.ts",
"newpost": "deno run --allow-read --allow-write utils/newpost.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"$fresh/": "https://raw.githubusercontent.com/denoland/fresh/60220dd33b5b0f6b5c72927c933dbc32a3c4734e/",
"preact": "https://esm.sh/preact@10.20.1",
"preact/": "https://esm.sh/preact@10.20.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.6.0",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"@/": "./",
"$std/": "https://deno.land/std@0.221.0/",
"fresh_blog/": "https://raw.githubusercontent.com/deer/fresh_blog/9aaf0075eb1f83be790d6dfe29ce6dd6077ca75b/",
"fresh_ga4/": "https://deno.land/x/fresh_ga4@0.0.4/"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
}