-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
47 lines (47 loc) · 1.95 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
44
45
46
47
{
"lock": false,
"tasks": {
"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 .",
"check:types": "deno check **/*.ts **/*.tsx",
"indexing": "deno run -A indexing.ts"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"imports": {
"$canvas": "https://deno.land/x/canvas@v1.4.2/mod.ts",
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"$mock_file/": "https://deno.land/x/mock_file@v1.1.2/",
"$og_edge/": "https://deno.land/x/og_edge@0.0.6/",
"$sqlite/": "https://deno.land/x/sqlite@v3.8/",
"$std/": "https://deno.land/std@0.224.0/",
"@/": "./",
"@hyzyla/pdfium": "npm:@hyzyla/pdfium@^2.1.2",
"@orama/orama": "npm:@orama/orama@^2.0.18",
"@orama/plugin-data-persistence": "npm:@orama/plugin-data-persistence@^2.0.18",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"dpack": "npm:dpack@^0.6.22",
"feed": "npm:feed@^4.2.2",
"github-slugger": "npm:github-slugger@^2.0.0",
"marked": "npm:marked@^12.0.2",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"schema-dts": "https://esm.sh/v135/*schema-dts@1.1.2"
},
"scopes": {
"https://deno.land/x/og_edge@0.0.6/": {
"https://esm.sh/react@18.2.0": "https://esm.sh/preact@10.14.1/compat"
},
"https://esm.sh/v135/": {
"@msgpack/msgpack": "https://esm.sh/v135/@msgpack/msgpack@2.8.0",
"pretty-format": "https://esm.sh/v135/pretty-format@3.8.0",
"xml-js": "https://esm.sh/v135/xml-js@1.6.11"
}
},
"exclude": ["**/_fresh/*", "data"]
}