generated from reggi/fedi-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
48 lines (48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"lock": false,
"tasks": {
"generate-import-map": "deno run --allow-read --allow-write generate_import_map.ts",
"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/ --unstable-kv 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/*"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"unstable": [
"kv"
],
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"@js-temporal/polyfill": "npm:@js-temporal/polyfill@^0.4.4",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/dotenv/load": "jsr:@std/dotenv@^0.220.1/load",
"@std/path": "jsr:@std/path@^0.220.1",
"@std/semver": "jsr:@std/semver@^0.220.1",
"@fedify/fedify": "jsr:@fedify/[email protected]+4c00fc5e",
"markdown-it": "npm:markdown-it@^14.0.0",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"scrypt": "https://deno.land/x/[email protected]/mod.ts",
"sanitize-html": "npm:sanitize-html@^2.12.1",
"uuidv7": "npm:uuidv7@^0.6.3",
"fresh_logging": "https://deno.land/x/[email protected]/index.ts"
}
}