-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 1.37 KB
/
deno.json
File metadata and controls
35 lines (35 loc) · 1.37 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
{
"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": {
"@octokit/core": "npm:@octokit/core@^7.0.2",
"@octokit/plugin-paginate-rest": "npm:@octokit/plugin-paginate-rest@^13.0.0",
"@octokit/plugin-rest-endpoint-methods": "npm:@octokit/plugin-rest-endpoint-methods@^15.0.0",
"@octokit/plugin-throttling": "npm:@octokit/plugin-throttling@^11.0.1",
"@octokit/types": "npm:@octokit/types@^14.0.0",
"@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@^5.0.1",
"fresh_charts": "https://deno.land/x/fresh_charts@0.3.1/mod.ts",
"lightningcss": "npm:lightningcss@^1.30.1",
"marked": "npm:marked@^15.0.11",
"marked-footnote": "npm:marked-footnote@^1.2.4",
"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"
}
}