-
Notifications
You must be signed in to change notification settings - Fork 4
/
deno.json
55 lines (55 loc) · 2.3 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check --unstable-kv **/*.ts && deno check --unstable-kv **/*.tsx",
"cli": "deno run -A --unstable-kv cli.ts",
"start": "deno run -A --unstable-kv --watch=static/,routes/ dev.ts",
"build": "deno task minify && deno run -A --unstable-kv dev.ts build",
"minify": "deno run -A minify.ts",
"preview": "deno run -A --unstable-kv main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"$fresh/": "https://raw.githubusercontent.com/kitsonk/fresh/esbuild_loader/",
"algoliasearch": "https://esm.sh/stable/[email protected]",
"@algolia/client-search": "https://esm.sh/stable/@algolia/[email protected]",
"@algolia/requester-fetch": "https://esm.sh/stable/@algolia/[email protected]",
"@codemonument/cliffy/": "jsr:/@codemonument/[email protected]/",
"@deno/gfm": "https://deno.land/x/[email protected]/mod.ts",
"kia": "https://deno.land/x/[email protected]/mod.ts",
"@kitsonk/kv-toolbox/": "jsr:/@kitsonk/[email protected]/",
"octokit": "https://esm.sh/stable/[email protected]",
"octokit-plugin-create-pull-request": "https://esm.sh/stable/[email protected]",
"monaco-editor": "npm:[email protected]",
"monaco-editor/editorWorker": "https://esm.sh/stable/[email protected]/esm/vs/editor/editor.worker?target=esnext&worker",
"og-edge": "https://deno.land/x/[email protected]/mod.ts",
"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]",
"prismjs/": "https://esm.sh/[email protected]/",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"@std/assert/": "jsr:/@std/[email protected]/",
"@std/dotenv/": "jsr:/@std/[email protected]/",
"@std/front-matter/": "jsr:/@std/[email protected]/",
"$utils/": "./utils/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": true
}