-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
33 lines (33 loc) · 1.02 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
{
"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",
"$util": "./lib/util/mod.ts",
"@henrygd/semaphore": "jsr:@henrygd/[email protected]",
"@negrel/webpush": "jsr:@negrel/[email protected]",
"@std/async": "jsr:@std/async@^1.0.9",
"@std/bytes": "jsr:@std/[email protected]",
"@std/collections": "jsr:@std/[email protected]",
"@std/datetime": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/http": "jsr:@std/[email protected]",
"@std/media-types": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/ulid": "jsr:@std/[email protected]",
"preact": "npm:[email protected]",
"preact-render-to-string": "npm:[email protected]"
},
"unstable": [
"kv",
"broadcast-channel"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}