This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
41 lines (41 loc) · 1.71 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
{
"compilerOptions": {
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
"fmt": {
"semiColons": false,
"singleQuote": true,
"exclude": [
"./changelog.md",
"./readme.md"
]
},
"imports": {
"authenticus": "https://deno.land/x/[email protected]/mod.ts",
"authenticus/preset": "https://deno.land/x/[email protected]/createPreset.ts",
"aws4fetch": "https://esm.sh/[email protected]?target=es2022",
"brotli": "https://deno.land/x/[email protected]/mod.ts",
"cliffy": "https://deno.land/x/[email protected]/mod.ts",
"cliffy/keypress": "https://deno.land/x/[email protected]/keypress/mod.ts",
"djwt": "https://deno.land/x/[email protected]/mod.ts",
"dom": "https://deno.land/x/[email protected]/deno-dom-wasm.ts",
"esbuild": "https://deno.land/x/[email protected]/mod.js",
"foras": "https://deno.land/x/[email protected]/src/deno/mod.ts",
"otpauth": "https://deno.land/x/[email protected]/dist/otpauth.esm.js",
"preact": "https://esm.sh/[email protected]?target=es2022",
"preact/render-to-string": "https://esm.sh/[email protected][email protected]&target=es2022",
"std/": "https://deno.land/[email protected]/",
"twind": "https://esm.sh/@twind/[email protected]",
"twind/preset-autoprefix": "https://esm.sh/@twind/[email protected]",
"twind/preset-tailwind": "https://esm.sh/@twind/[email protected]",
"worker": "https://cdn.jsdelivr.net/npm/@cloudflare/[email protected]/index.ts",
"upstash": "https://deno.land/x/[email protected]/mod.ts",
"zod": "https://deno.land/x/[email protected]/mod.ts"
},
"lock": false,
"tasks": {
"check": "deno fmt && deno lint --unstable && deno task test",
"test": "deno test -A --unstable"
}
}