-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
56 lines (56 loc) · 2.14 KB
/
deno.jsonc
File metadata and controls
56 lines (56 loc) · 2.14 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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"tasks": {
"start": "deno run --allow-all --unstable-ffi dist/main.esm.js",
"dev": "deno run --allow-all --unstable-ffi --watch src/main.ts",
"deps": "deno cache --reload --lock=deno.lock --lock-write deps.ts build.ts",
"build": "deno run --allow-all --unstable-ffi build.ts",
"test": "deno test --allow-all --unstable-ffi"
},
"imports": {
"std/": "https://deno.land/std@0.218.0/",
"esbuild": "https://deno.land/x/esbuild@v0.20.1/mod.js",
"esbuild/loader": "https://deno.land/x/esbuild_deno_loader@0.9.0/mod.ts",
"esbuild/copy": "https://deno.land/x/esbuild_plugin_copy@v1.1.3/mod.ts",
"hono": "https://deno.land/x/hono@v4.0.8/mod.ts",
"hono/cors": "https://deno.land/x/hono@v4.0.8/middleware/cors/index.ts",
"hono/pretty-json": "https://deno.land/x/hono@v4.0.8/middleware/pretty-json/index.ts",
"hono/serve-static": "https://deno.land/x/hono@v4.0.8/middleware/serve-static/index.ts",
"hono/logger": "https://deno.land/x/hono@v4.0.8/middleware/logger/index.ts",
"hono/swagger-ui": "https://cdn.jsdelivr.net/npm/@hono/swagger-ui@0.2.1/+esm",
"status-code": "https://deno.land/x/https_status_codes@v1.2.0/mod.ts",
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts",
"readline": "https://deno.land/x/readline@v1.1.0/mod.ts",
"sqlite3": "https://deno.land/x/sqlite3@0.11.0/mod.ts"
},
"scopes": {
"https://deno.land/x/esbuild_plugin_copy@v1.1.3/": {
"https://deno.land/x/esbuild@v0.19.2/mod.js": "https://deno.land/x/esbuild@v0.20.1/mod.js"
}
},
"compilerOptions": {
"allowJs": false,
"lib": ["deno.window"],
"strict": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"removeComments": true
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
},
"include": ["src/"]
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["src/"]
}
}