-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
30 lines (30 loc) · 1 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
{
"unstable": ["temporal"],
"tasks": {
"each": "deno run -A scripts/each.ts",
"build": "deno task each run -A -- pages/**/*.[jt]s[x]",
"watch": "deno task each run -A --watch=components,pages,public,utils -- pages/**/*.[jt]s[x]",
"serve": "deno task watch & deno run -A scripts/serve.ts",
"clean": "rm -rf build"
},
"imports": {
"@std/front-matter": "jsr:@std/front-matter@^1",
"@std/fs": "jsr:@std/fs@^1",
"@std/http": "jsr:@std/http@^1",
"@std/path": "jsr:@std/path@^1",
"clsx": "npm:clsx@^2.1.1",
"components/": "./components/",
"feed": "npm:feed@^4.2.2",
"fresh_charts": "https://deno.land/x/[email protected]/mod.ts",
"lightningcss": "npm:lightningcss@^1.27.0",
"marked": "npm:marked@^14.1.2",
"octokit": "npm:[email protected]",
"preact": "npm:preact@^10.24.0",
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
"utils/": "./utils/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}