-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
73 lines (73 loc) · 2.78 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"tasks": {
"init": "deno i --entrypoint main.ts && deno i --entrypoint dev.ts",
"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/,posts/ dev.ts",
"dev": "deno task start",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"fmt": {
"options": {
"semiColons": false,
"singleQuote": true
}
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@/": "./",
"@std/dotenv": "jsr:@std/[email protected]",
"fresh": "jsr:@fresh/[email protected]",
"@fresh/plugin-tailwind": "jsr:@fresh/[email protected]",
"fresh-atom": "jsr:@elsoul/[email protected]",
"fresh-i18n": "jsr:@elsoul/[email protected]",
"fresh-theme": "jsr:@elsoul/[email protected]",
"fresh-sitemap": "jsr:@elsoul/[email protected]",
"preact": "npm:[email protected]",
"preact/hooks": "npm:[email protected]/hooks",
"preact/jsx-runtime": "npm:[email protected]/jsx-runtime",
"react": "npm:[email protected]/compat",
"react-dom": "npm:[email protected]/compat",
"@types/react": "npm:[email protected]/compat",
"@preact/signals": "npm:@preact/[email protected]",
"@preact/signals-core": "npm:@preact/[email protected]",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"@tailwindcss/typography": "npm:@tailwindcss/[email protected]",
"tailwindcss-animate": "npm:[email protected]",
"tailwind-scrollbar": "npm:[email protected]",
"tailwind-merge": "npm:[email protected]",
"iconoir-react": "https://esm.sh/[email protected]?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&external=preact",
"clsx": "npm:[email protected]",
"@react-spring/web": "npm:@react-spring/[email protected]",
"class-variance-authority": "npm:[email protected]",
"lodash.throttle": "https://raw.githubusercontent.com/lodash/lodash/4.17.21-es/throttle.js",
"prismjs": "npm:[email protected]",
"marked": "npm:[email protected]",
"marked-mangle": "npm:[email protected]",
"@std/front-matter": "jsr:@std/[email protected]",
"@std/html": "jsr:@std/html@1",
"@std/path": "jsr:@std/path@1",
"github-slugger": "npm:[email protected]"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}