-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
70 lines (70 loc) · 1.62 KB
/
deno.json
File metadata and controls
70 lines (70 loc) · 1.62 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
68
69
70
{
"nodeModulesDir": "auto",
"tasks": {
"codegen": "deno run --allow-read --allow-write --allow-env ./generator/genmain.ts",
"check": "deno fmt --check . --ignore=node_modules,support/atproto/generated && deno lint . --ignore=node_modules && deno check --ignore=node_modules",
"dev": "deno run -A --unstable-kv --env npm:vite",
"build": "git clone https://github.com/bluesky-social/atproto.git _external/atproto && deno task codegen && vite build",
"start": "deno serve -A --unstable-kv --env _fresh/server.js",
"update": "deno run -A -r jsr:@fresh/update .",
"makejwt": "deno run --allow-env --env ./tools/makejwt.ts"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*"
],
"imports": {
"@panva/jose": "jsr:@panva/jose@^6.1.0",
"@std/assert": "jsr:@std/assert@^1.0.14",
"@std/http": "jsr:@std/http@^1.0.20",
"fresh": "jsr:@fresh/core@^2.1.1",
"preact": "npm:preact@^10.27.2",
"@preact/signals": "npm:@preact/signals@^2.3.1",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.4",
"typescript": "npm:typescript@^5.9.3",
"vite": "npm:vite@^7.1.3",
"_/": "./",
"#/": "./support/",
"@/": "./support/atproto/"
},
"compilerOptions": {
"lib": [
"dom",
"dom.asynciterable",
"dom.iterable",
"deno.ns"
],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head",
"title",
"meta",
"script",
"link",
"style",
"base",
"noscript",
"template"
],
"types": [
"vite/client"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 120
}
}