-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
33 lines (33 loc) · 1.48 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check ./src/**/*.ts && deno check ./src/**/*.tsx",
"dev": "deno run -A --unstable --watch=./src/static/,./src/routes/ ./src/dev.ts",
"build": "deno run -A ./build.ts",
"start": "deno run -A --unstable ./src/main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"preview": "deno run -A ./main.ts"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"imports": {
"@/": "./src/",
"$fresh/": "https://deno.land/x/fresh@1.5.1/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.1",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
"$std/": "https://deno.land/std@0.193.0/",
"fresh-session": "https://deno.land/x/fresh_session@0.2.2/mod.ts",
"querystring": "https://deno.land/x/querystring@v1.0.2/mod.js",
"zip": "https://deno.land/x/zip@v1.2.5/mod.ts",
"openai": "https://deno.land/x/openai@1.4.2/mod.ts",
"uuid": "https://esm.sh/uuid@9.0.0",
"tmi.js": "https://esm.sh/tmi.js@1.8.5",
"socket.io": "https://esm.sh/socket.io@4.7.2"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
}