-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
57 lines (52 loc) · 2.33 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
{
"lock": false,
"tasks": {
"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/ 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 ."
},
"deno": { "build": { "preExec": ["basehub --output .basehub"] } },
"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/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"classnames": "https://esm.sh/v135/classnames@latest",
"clsx": "https://esm.sh/v133/[email protected]/?alias=react:preact/compat&deps=react",
"tailwind-merge": "npm:/tailwind-merge@latest",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"$std/": "https://deno.land/[email protected]/",
"react-dom": "https://esm.sh/v135/[email protected]/compat",
"basehub": "npm:[email protected]",
"basehub/react": "https://esm.sh/v133/basehub/react?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat",
"sonner": "https://esm.sh/v133/*[email protected]?alias=react:preact/compat&deps=react",
"framer-motion": "https://esm.sh/v133/[email protected]?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat",
"@shikijs/transformers" : "https://esm.sh/v133/@shikijs/transformers@latest?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat",
"shiki" : "https://esm.sh/v133/shiki@latest?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat",
"react-icons/pi" : "https://esm.sh/v133/react-icons/pi?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": true
}