-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (42 loc) · 2.02 KB
/
deno.json
File metadata and controls
42 lines (42 loc) · 2.02 KB
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
{
"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 .",
"build-workers": "deno run -A workers/_build.ts"
},
"test": { "include": ["./lib"] },
"lint": {
"rules": { "tags": ["fresh", "recommended"], "exclude": ["no-window"] }
},
"exclude": ["**/_fresh/*", "static/", "lib/dexie-live-query"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
"@twind/preset-tailwind": "https://esm.sh/@twind/preset-tailwind@1.1.4/",
"@twind/preset-autoprefix": "https://esm.sh/@twind/preset-autoprefix@1.0.7/",
"$std/": "https://deno.land/std@0.224.0/",
"mtkruto/": "https://deno.land/x/mtkruto@0.2.5/",
"grammy/": "https://deno.land/x/grammy@v1.23.0/",
"dexie": "https://esm.sh/dexie@3.2.6",
"dexie-react-hooks": "https://esm.sh/dexie-react-hooks@1.1.7?alias=react:preact/compat",
"prism-json": "https://esm.sh/prismjs@1.29.0/components/prism-json?no-check",
"prismjs": "https://esm.sh/prismjs@1.29.0",
"ipaddr.js": "https://esm.sh/ipaddr.js@2.1.0",
"clsx": "https://esm.sh/clsx@2.1.0",
"tailwind-merge": "https://esm.sh/tailwind-merge@2.2.1",
"esbuild/": "https://deno.land/x/esbuild@v0.20.1/",
"esbuild_deno_loader/": "https://deno.land/x/esbuild_deno_loader@0.8.5/",
"time_ago/": "https://deno.land/x/time_ago@v1/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}