-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
46 lines (46 loc) · 1.24 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
{
"version": "0.7.1",
"bin": {
"hc": "scripts/hc"
},
"tasks": {
"build": "cd cli && deno task build",
"bump": "deno run -A scripts/bump-version.ts && git add deno.json lib/version.ts */deno.json && git commit -m 'Bump version'",
"publish": "cd lib && deno publish",
"tag": "git tag v$(jq -r .version deno.json) && git push origin --tags",
"test": "deno fmt && deno lint --fix && deno task test:all",
"test:cli": "cd cli && deno task test",
"test:lib": "deno test lib",
"test:maml": "deno test maml",
"test:all": "deno task test:cli && deno task test:lib && deno task test:maml"
},
"fmt": {
"exclude": [
"**/*.html",
"**/_fresh/*"
]
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"@swanfactory/hclang": "./lib/mod.ts",
"preact": "https://esm.sh/preact@10.22.0/",
"preact/": "https://esm.sh/preact@10.22.0/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"$std/": "https://deno.land/std@0.216.0/"
},
"workspace": [
"cli",
"lib",
"maml",
"web"
]
}