-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
36 lines (36 loc) · 1.8 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
{
"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 --env-file=.env -A --unstable-ffi --watch=static/,routes/ dev.ts",
"build": "deno run -A --unstable-ffi dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"test": "deno test -A"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@^0.1.48",
"@denodb": "https://raw.githubusercontent.com/Eason0729/denodb/master/mod.ts",
"@denodb/types": "https://raw.githubusercontent.com/Eason0729/denodb/master/lib/data-types.ts",
"@google/generative-ai": "npm:@google/generative-ai@^0.21.0",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@tabler/icons-preact": "npm:@tabler/icons-preact@^3.26.0",
"ollama": "https://raw.githubusercontent.com/Eason0729/ollama-jsr/main/mod.ts",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"semaphore": "https://deno.land/x/[email protected]/mod.ts",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"opencc": "https://cdn.jsdelivr.net/npm/[email protected]/dist/esm/cn2t.js",
"sqlite": "jsr:@db/sqlite@^0.12.0"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}