-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdeno.json
31 lines (31 loc) · 1.06 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
{
"workspace": [
"./src",
"./cli",
"./examples/blog",
"./examples/hono-sample"
],
"imports": {
"@logtape/logtape": "jsr:@logtape/logtape@^0.8.1",
"@std/fs": "jsr:@std/fs@^1.0.3",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/semver": "jsr:@std/semver@^1.0.3",
"preact": "npm:[email protected]"
},
"unstable": [
"fs",
"kv",
"process",
"temporal"
],
"tasks": {
"codegen": "deno task -f @fedify/cli codegen",
"check": "deno task -f @fedify/fedify check && deno task -f @fedify/cli check && deno task -f @fedify/blog check && deno task -f @fedify/hono-sample check",
"test-all": "deno task -f @fedify/fedify test-all && deno task -f @fedify/cli check && deno task -f @fedify/blog check && deno task -f @fedify/hono-sample check",
"publish": "deno task -f @fedify/fedify publish && deno task -f @fedify/cli publish",
"hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": {
"dependencies": ["check"]
}
}
}