-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
44 lines (44 loc) · 1.08 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
{
"tasks": {
"dev": "deno run -A --watch main.tsx",
"staticalize": "deno run -A jsr:@frontside/staticalize@0.2.0/cli --site http://localhost:8000 --output=built --base=http://localhost:8000",
"pagefind": "npx pagefind --site built"
},
"lint": {
"exclude": [
"docs/esm"
],
"rules": {
"exclude": [
"prefer-const",
"require-yield"
]
}
},
"fmt": {
"exclude": [
"docs/esm"
]
},
"compilerOptions": {
"lib": [
"deno.ns",
"dom.iterable",
"dom"
],
"jsx": "react-jsx",
"jsxImportSource": "revolution"
},
"imports": {
"effection": "jsr:@effection/effection@3.1.0",
"unified": "npm:unified@11.0.4",
"revolution": "https://deno.land/x/revolution@0.6.1/mod.ts",
"revolution/jsx-runtime": "https://deno.land/x/revolution@0.6.1/jsx-runtime.ts",
"https://deno.land/x/path_to_regexp@v6.2.1/index.ts": "npm:path-to-regexp@8.2.0"
},
"deploy": {
"org": "Frontside",
"project": "effection-www",
"entrypoint": "https://jsr.io/@std/http/1.0.12/file_server.ts"
}
}