-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
39 lines (39 loc) · 1.71 KB
/
deno.jsonc
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
{
"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 -Ar https://fresh.deno.dev/update .",
"generate": "deno run -Ar https://deno.land/x/generate/cli/main.ts gen.ts"
},
"unstable": ["kv"],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"#/": "./",
"$fresh/": "https://deno.land/x/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"@fartlabs/jsonx": "jsr:@fartlabs/jsonx@^0.0.10",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/front-matter": "jsr:@std/front-matter@^0.220.1",
"@std/front-matter/any": "jsr:@std/front-matter@^0.220.1/any",
"@std/fs": "jsr:@std/fs@^0.220.1",
"@std/http": "jsr:@std/http@^0.220.1",
"@std/path": "jsr:@std/path@^0.220.1",
"@std/semver": "jsr:@std/semver@^0.220.1",
"@std/ulid": "jsr:@std/ulid@^0.220.1",
"@std/yaml": "jsr:@std/yaml@^0.220.1",
"highlight.js": "npm:[email protected]",
"markdown-it": "npm:[email protected]",
"markdown-it-anchor": "npm:[email protected]",
"markdown-it-toc-done-right": "npm:[email protected]",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" }
}