-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
67 lines (67 loc) · 2.45 KB
/
deno.json
File metadata and controls
67 lines (67 loc) · 2.45 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"tasks": {
"start": "deno run --allow-net --allow-read --allow-env --allow-write --unstable-kv src/app/main.ts",
"dev": "deno run --allow-net --allow-read --allow-env --allow-write --unstable-kv --watch src/app/main.ts",
"test": "deno test --allow-read --allow-write --allow-env",
"test:watch": "deno test --allow-read --allow-write --allow-env --watch",
"coverage": "deno test --allow-none --coverage=coverage && deno coverage coverage",
"lint": "deno lint",
"fmt": "deno fmt",
"check": "deno check src/app/main.ts",
"smoke": "deno test --allow-read --allow-write tests/result_test.ts tests/types_test.ts",
"frontmatter:check": "deno run --allow-read scripts/check_frontmatter.ts",
"hooks:install": "git config core.hooksPath .githooks",
"setup": "mkdir -p public/css public/js content/posts && curl -sL https://unpkg.com/htmx.org/dist/htmx.min.js -o public/js/htmx.min.js",
"build": "deno run --allow-net --allow-read --allow-env --allow-write src/app/build.ts",
"at:publish": "deno run --allow-net --allow-read --allow-env src/app/at-publish.ts",
"at:pull": "deno run --allow-net --allow-read --allow-env --allow-write src/app/at-pull.ts",
"at:verify": "deno run --allow-net --allow-read --allow-env src/app/at-verify.ts"
},
"fmt": {
"exclude": [
"public/css/vendor/open-props.min.css"
],
"options": {
"indentWidth": 2,
"lineWidth": 80,
"singleQuote": false
}
},
"lint": {
"include": [
"src/"
]
},
"imports": {
"@srdjan/bluesky-bot": "jsr:@srdjan/bluesky-bot@^1.5.0",
"hsx/jsx-runtime": "jsr:@srdjan/hsx/jsx-runtime",
"@srdjan/hsx": "jsr:@srdjan/hsx",
"@srdjan/rendermaid": "jsr:@srdjan/rendermaid@0.7.0",
"marked": "https://esm.sh/marked@17.0.3",
"highlight.js": "https://esm.sh/highlight.js@11.11.1",
"isomorphic-dompurify": "npm:isomorphic-dompurify@3.0.0",
"@std/yaml": "jsr:@std/yaml@1.0.12",
"@std/http": "jsr:@std/http@1.0.25",
"@std/assert": "jsr:@std/assert@1.0.19"
},
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"jsx": "react-jsx",
"jsxImportSource": "hsx",
"types": ["./src/types/jsx.d.ts"]
},
"unstable": ["kv"],
"deploy": {
"exclude": [
"**/node_modules",
"coverage/",
"tests/"
],
"include": [],
"entrypoint": "src/app/main.ts"
},
"lock": true
}