-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
35 lines (35 loc) · 1.62 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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"unstable": ["kv"],
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run -A -",
"manifest": "deno task cli manifest $(pwd)",
"debug": "deno run -A --inspect-wait --watch=static/,routes/ dev.ts",
"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 ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$/": "./",
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"$open-schemas/": "https://deno.land/x/open_schemas@2.2.1/",
"$postgres/": "https://deno.land/x/postgres@v0.19.3/",
"$std/": "https://deno.land/std@0.219.0/",
"@open-schemas/zod": "jsr:@open-schemas/zod@^0.10.2",
"@std/assert": "jsr:@std/assert@^0.221.0",
"@std/log": "jsr:@std/log@^0.221.0",
"@std/testing": "jsr:@std/testing@^0.221.0",
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.6",
"googleai_schemas": "https://deno.land/x/open_schemas@1.3.0/zod/googleai/mod.ts",
"ollama_schemas": "https://deno.land/x/open_schemas@1.3.0/zod/ollama/mod.ts",
"openai_schemas": "https://deno.land/x/open_schemas@1.3.0/zod/openai/mod.ts",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"zod": "https://deno.land/x/zod@v3.23.8/mod.ts"
},
"nodeModulesDir": false
}