forked from grammyjs/telegram.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
43 lines (43 loc) · 2.09 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
{
"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/[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]",
"@twind/core": "https://esm.sh/@twind/[email protected]",
"@twind/preset-tailwind": "https://esm.sh/@twind/[email protected]/",
"@twind/preset-autoprefix": "https://esm.sh/@twind/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"mtkruto/": "https://deno.land/x/[email protected]/",
"grammy/": "https://deno.land/x/[email protected]/",
"dexie": "https://esm.sh/[email protected]",
"dexie-react-hooks": "https://esm.sh/[email protected]?alias=react:preact/compat",
"prism-json": "https://esm.sh/[email protected]/components/prism-json?no-check",
"prismjs": "https://esm.sh/[email protected]",
"ipaddr.js": "https://esm.sh/[email protected]",
"clsx": "https://esm.sh/[email protected]",
"tailwind-merge": "https://esm.sh/[email protected]",
"esbuild/": "https://deno.land/x/[email protected]/",
"esbuild_deno_loader/": "https://deno.land/x/[email protected]/",
"ml-regression-polynomial": "https://esm.sh/[email protected]",
"time_ago/": "https://deno.land/x/time_ago@v1/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}