-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
51 lines (47 loc) Β· 1.98 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"start": "deno run --unstable -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.4.3/",
"preact": "https://esm.sh/preact@10.17.0",
"preact/": "https://esm.sh/preact@10.17.0/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
"$std/": "https://deno.land/std@0.160.0/",
"react-icons/fi": "https://cdn.jsdelivr.net/gh/urielch/react-icons-fi@1.0.9/mod.ts",
"react-icons/si": "https://cdn.jsdelivr.net/gh/urielch/react-icons-si@1.0.9/mod.ts",
"rss/": "https://deno.land/x/rss@1.0.0/",
"unescape": "https://deno.land/x/html_escape@v1.1.5/unescape.ts",
"preact-feather": "https://cdn.skypack.dev/preact-feather@4.2.1",
"marked": "https://cdn.skypack.dev/marked@4.1.1",
"ammonia": "https://deno.land/x/ammonia@0.3.1/mod.ts",
"@twind/typography": "https://cdn.skypack.dev/@twind/typography",
"@/": "./",
"./": "./",
"$gfm": "https://deno.land/x/gfm@0.1.26/mod.ts",
"feed": "https://esm.sh/feed@4.2.2",
"html": "https://deno.land/x/htm@0.2.0/mod.ts",
"ColorScheme": "https://deno.land/x/htm@0.2.0/plugins/color-scheme.ts",
"preact-scroll-header": "https://unpkg.com/preact-scroll-header@1.0.0/dist/preact-scroll-header.min.js",
"fresh-seo": "https://deno.land/x/fresh_seo/mod.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}