-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
48 lines (48 loc) · 2.11 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
{
"lock": true,
"tasks": {
"check": "deno fmt --ignore=_fresh,nix --check && deno lint --ignore=_fresh,nix && deno check *.ts plugins/**/*.ts routes/**/*.ts utils/**/*.ts components/**/*.tsx islands/**/*.tsx routes/**/*.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 ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"browserslist": "https://esm.sh/[email protected]?external=caniuse-lite&pin=v135",
"caniuse-lite/": "https://esm.sh/[email protected]&pin=v135/",
"cbor-x": "https://esm.sh/[email protected]?pin=v135",
"commonmark": "https://esm.sh/gh/commonmark/commonmark.js@6f94a997e9?no-dts&pin=v135",
"discord_api_types/": "https://deno.land/x/[email protected]/",
"$fresh/": "https://deno.land/x/[email protected]/",
"lightningcss-wasm": "https://esm.sh/[email protected]?pin=v135",
"lightningcss-wasm/": "https://esm.sh/[email protected]&pin=v135/",
"oauth2_client/": "https://deno.land/x/[email protected]/",
"postgresjs/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]?pin=v135",
"preact/": "https://esm.sh/[email protected]&pin=v135/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]?pin=v135",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]?pin=v135",
"$std/": "https://deno.land/[email protected]/",
"@unocss/core": "https://esm.sh/@unocss/[email protected]?pin=v135",
"@unocss/preset-uno": "https://esm.sh/@unocss/[email protected]?pin=v135",
"@unocss/preset-typography": "https://esm.sh/@unocss/[email protected]?pin=v135",
"@unocss/reset/": "https://esm.sh/@unocss/[email protected]&pin=v135/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}