-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
71 lines (71 loc) · 2.69 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
{
"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": {
"@/": "./",
"fresh": "jsr:@fresh/core@2.0.0-alpha.23",
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@0.0.1-alpha.7",
"fresh-atom": "jsr:@elsoul/fresh-atom@1.0.0",
"fresh-i18n": "jsr:@elsoul/fresh-i18n@1.2.0",
"fresh-theme": "jsr:@elsoul/fresh-theme@1.3.0",
"fresh-sitemap": "jsr:@elsoul/fresh-sitemap@1.3.1",
"preact": "npm:preact@10.24.3",
"preact/hooks": "npm:preact@10.24.3/hooks",
"preact/jsx-runtime": "npm:preact@10.24.3/jsx-runtime",
"react": "npm:preact@10.24.3/compat",
"react-dom": "npm:preact@10.24.3/compat",
"@preact/signals": "npm:@preact/signals@1.3.0",
"@preact/signals-core": "npm:@preact/signals-core@1.8.0",
"tailwindcss": "npm:tailwindcss@3.4.13",
"tailwindcss/": "npm:/tailwindcss@3.4.13/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.13/plugin.js",
"@tailwindcss/typography": "npm:@tailwindcss/typography@0.5.14",
"tailwindcss-animate": "npm:tailwindcss-animate@1.0.7",
"tailwind-scrollbar": "npm:tailwind-scrollbar@3.1.0",
"tailwind-merge": "npm:tailwind-merge@2.3.0",
"iconoir-react": "https://esm.sh/iconoir-react@7.9.0?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&external=preact",
"clsx": "npm:clsx@2.1.1",
"@react-spring/web": "npm:@react-spring/web@9.7.4",
"class-variance-authority": "npm:class-variance-authority@0.7.0",
"lodash.throttle": "https://raw.githubusercontent.com/lodash/lodash/4.17.21-es/throttle.js",
"prismjs": "npm:prismjs@1.29.0",
"marked": "npm:marked@14.1.3",
"marked-mangle": "npm:marked-mangle@1.1.9",
"@std/front-matter": "jsr:@std/front-matter@1.0.5",
"@std/html": "jsr:@std/html@1",
"@std/path": "jsr:@std/path@1",
"github-slugger": "npm:github-slugger@2.0.0"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}