-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
65 lines (65 loc) · 1.39 KB
/
deno.json
File metadata and controls
65 lines (65 loc) · 1.39 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
{
"name": "@kf/fresh-auth",
"version": "0.1.0-alpha.3",
"exports": {
"./handlers.ts": "./src/handlers.ts",
"./jwt.ts": "./src/jwt.ts",
"./password.ts": "./src/password.ts",
"./state.ts": "./src/state.ts"
},
"publish": {
"exclude": [
"deno.lock",
"dev.ts",
"main.ts",
"test.ts"
]
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"dev": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"start": "deno run -A main.ts",
"update": "deno run -A -r jsr:@fresh/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"fmt": {
"lineWidth": 120
},
"lock": true,
"exclude": [
"**/_fresh/*"
],
"imports": {
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@^0.0.1-alpha.7",
"@preact/signals": "npm:@preact/signals@^1.2.3",
"@std/crypto": "jsr:@std/crypto@^1.0.1",
"fresh": "jsr:@fresh/core@^2.0.0-alpha.19",
"jose": "npm:jose@^5.6.3",
"preact": "npm:preact@^10.22.0"
},
"compilerOptions": {
"lib": [
"dom",
"dom.asynciterable",
"deno.ns"
],
"jsx": "precompile",
"jsxImportSource": "preact",
"jsxPrecompileSkipElements": [
"a",
"img",
"source",
"body",
"html",
"head"
]
}
}