-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
56 lines (56 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@indirect/short",
"version": "1.4.3",
"license": "AGPL-3.0-only",
"lock": false,
"imports": {
"@std/cache": "jsr:@std/cache@~0.1.3",
"@std/crypto": "jsr:@std/crypto@1",
"@std/encoding": "jsr:@std/encoding@1",
"@std/text": "jsr:@std/text@1",
"@std/uuid": "jsr:@std/uuid@1",
"fnv1a": "npm:@sindresorhus/[email protected]",
"hono": "jsr:@hono/hono@^4.6.11",
"qrcode": "jsr:@libs/[email protected]",
"valibot": "jsr:@valibot/valibot@~1.0.0-beta.8"
},
"tasks": {
"dev": "deno serve --port 3000 -N=esm.sh:443 -R=./db -W=./db --watch dev.ts"
},
"exports": {
"./deploy/unstable-cloudflare": "./deploy/unstable-cloudflare.ts",
"./deploy/deno": "./deploy/deno.ts",
"./helper": "./helper.ts",
"./hotfix": "./hotfix.ts",
"./app": "./app.tsx",
".": "./mod.ts"
},
"publish": {
"include": [
"./**/*.ts",
"./**/*.tsx",
"./LICENSE.txt",
"./README.md",
"./deno.json"
]
},
"test": {
"include": [
"./specs"
]
},
"unstable": [
"kv"
],
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx",
"jsxImportSourceTypes": "hono/jsx",
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true
}
}