-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
33 lines (33 loc) · 1.62 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
{
"tasks": {
"start": "deno run --unstable -A --watch=static/,routes/ dev.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run --unstable -A dev.ts build",
"preview": "deno run --unstable -A main.ts",
"deploy": "~/.fly/bin/fly deploy"
},
"lock": false,
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"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]",
"std/": "https://deno.land/[email protected]/",
"@reading-time-estimator": "https://esm.sh/v113/[email protected]",
"$fresh/": "https://deno.land/x/[email protected]/",
"$icons/": "https://deno.land/x/[email protected]/tsx/",
"$ttl": "https://deno.land/x/[email protected]/mod.ts",
"@twind/core": "https://esm.sh/v111/@twind/[email protected]",
"@twind/preset-autoprefix": "https://esm.sh/v111/@twind/[email protected]",
"@twind/preset-tailwind": "https://esm.sh/v111/@twind/[email protected]",
"@twind/preset-tailwind-forms": "https://esm.sh/v111/@twind/[email protected]",
"@twind/preset-typography": "https://esm.sh/v111/@twind/[email protected]",
"@comrak": "https://deno.land/x/[email protected]/mod.ts",
"@freshwind": "https://deno.land/x/[email protected]/plugin.ts",
"@/": "./"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
}