-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
44 lines (44 loc) · 1.42 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": {
"start": "deno run -A --env-file --watch main.ts"
},
"imports": {
"$server": "./lib/server/mod.ts",
"$webauthn": "./lib/webauthn/mod.ts",
"$chat": "./lib/chat/mod.ts",
"$upload": "./lib/upload/mod.ts",
"$aws": "./lib/aws/mod.ts",
"$util": "./lib/util/mod.ts",
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.7",
"@negrel/webpush": "jsr:@negrel/webpush@0.3.0",
"@std/assert": "jsr:@std/assert@^1.0.10",
"@std/async": "jsr:@std/async@^1.0.9",
"@std/bytes": "jsr:@std/bytes@1.0.2",
"@std/collections": "jsr:@std/collections@1.0.7",
"@std/datetime": "jsr:@std/datetime@0.225.1",
"@std/encoding": "jsr:@std/encoding@1.0.1",
"@std/fmt": "jsr:@std/fmt@^1.0.4",
"@std/http": "jsr:@std/http@1.0.2",
"@std/media-types": "jsr:@std/media-types@1.0.3",
"@std/path": "jsr:@std/path@1.0.8",
"@std/ulid": "jsr:@std/ulid@1.0.0",
"preact": "npm:preact@10.22.0",
"preact-render-to-string": "npm:preact-render-to-string@6.5.9",
"deno_aws_sign_v4": "https://deno.land/x/aws_sign_v4@1.0.2/mod.ts",
"aws_s3_presign": "https://deno.land/x/aws_s3_presign@2.2.1/mod.ts",
"@b-fuze/deno-dom/wasm-noinit": "jsr:@b-fuze/deno-dom/wasm-noinit"
},
"unstable": [
"kv",
"broadcast-channel"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"lint": {
"rules": {
"exclude": ["jsx-button-has-type"]
}
}
}