-
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/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"twind": "https://esm.sh/[email protected]",
"twind/": "https://esm.sh/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"react-icons/fi": "https://cdn.jsdelivr.net/gh/urielch/[email protected]/mod.ts",
"react-icons/si": "https://cdn.jsdelivr.net/gh/urielch/[email protected]/mod.ts",
"rss/": "https://deno.land/x/[email protected]/",
"unescape": "https://deno.land/x/[email protected]/unescape.ts",
"preact-feather": "https://cdn.skypack.dev/[email protected]",
"marked": "https://cdn.skypack.dev/[email protected]",
"ammonia": "https://deno.land/x/[email protected]/mod.ts",
"@twind/typography": "https://cdn.skypack.dev/@twind/typography",
"@/": "./",
"./": "./",
"$gfm": "https://deno.land/x/[email protected]/mod.ts",
"feed": "https://esm.sh/[email protected]",
"html": "https://deno.land/x/[email protected]/mod.ts",
"ColorScheme": "https://deno.land/x/[email protected]/plugins/color-scheme.ts",
"preact-scroll-header": "https://unpkg.com/[email protected]/dist/preact-scroll-header.min.js",
"fresh-seo": "https://deno.land/x/fresh_seo/mod.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}