-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
51 lines (51 loc) · 1.73 KB
/
deno.json
File metadata and controls
51 lines (51 loc) · 1.73 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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"license": "EUPL-1.2",
"lock": true,
"nodeModulesDir": "auto",
"compilerOptions": {
"lib": ["deno.window", "deno.unstable", "esnext"]
},
"unstable": ["cron", "raw-imports", "bare-node-builtins"],
"allowScripts": [],
"imports": {
"#/": "./src/",
"#db/": "./src/database/",
"#document/": "./src/document/",
"#endpoint/": "./src/endpoints/",
"#http/": "./src/http/",
"#task/": "./src/tasks/",
"#util/": "./src/utils/",
"@deno/loader": "jsr:@deno/loader@~0.5.0",
"@hono/openapi": "npm:hono-openapi@^1.3.0",
"@hono/standard-validator": "jsr:@hono/standard-validator@~0.2.2",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/async": "jsr:@std/async@^1.3.0",
"@std/cache": "jsr:@std/cache@~0.2.3",
"@std/collections": "jsr:@std/collections@^1.1.7",
"@std/dotenv": "jsr:@std/dotenv@~0.225.6",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/fmt": "jsr:@std/fmt@^1.0.10",
"@std/fs": "jsr:@std/fs@^1.0.23",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/streams": "jsr:@std/streams@^1.1.0",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"@types/node": "npm:@types/node@^25.6.0",
"arkenv": "npm:arkenv@~0.11.0",
"arktype": "npm:arktype@^2.2.0",
"hash-wasm": "npm:hash-wasm@^4.12.0",
"hono": "jsr:@hono/hono@^4.12.15",
"nanoid": "jsr:@sitnik/nanoid@^5.1.9",
"oxfmt": "npm:oxfmt@^0.46.0",
"oxlint": "npm:oxlint@^1.61.0",
"oxlint-tsgolint": "npm:oxlint-tsgolint@^0.21.1",
"rolldown": "npm:rolldown@1.0.0-rc.17"
},
"fmt": {
"exclude": ["**"]
},
"lint": {
"exclude": ["**"]
},
"exclude": ["./dist/", "./node_modules/", "./storage/"]
}