-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
34 lines (34 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
32
33
34
{
"lock": false,
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "@fartlabs/htx"
},
"imports": {
"#/": "./",
"@fartlabs/htx": "jsr:@fartlabs/htx@^0.0.9",
"@kitsonk/ga4": "jsr:@kitsonk/ga4@^0.1.0",
"@std/front-matter": "jsr:@std/front-matter@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/http": "jsr:@std/http@^1.0.0",
"alea": "npm:alea@^1.0.1",
"feed": "npm:feed@^4.2.2",
"highlight.js": "npm:highlight.js@^11.11.0",
"markdown-it": "npm:markdown-it@^14.1.0",
"markdown-it-anchor": "npm:markdown-it-anchor@^9.0.0",
"markdown-it-toc-done-right": "npm:markdown-it-toc-done-right@^4.2.0",
"simplex-noise": "npm:simplex-noise@^4.0.1"
},
"tasks": {
"generate": "deno run --allow-read --allow-write codegen/codegen.ts",
"start": "deno run --allow-net --allow-read --allow-env --env main.ts generated",
"outdated": "deno outdated --update --latest",
"gs": "deno task generate && deno task start"
},
"fmt": {
"exclude": ["generated"]
},
"lint": {
"exclude": ["generated"]
}
}