-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathdeno.json
More file actions
53 lines (53 loc) · 1.65 KB
/
deno.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run -A scripts/task-runner.ts dev",
"doctor": "deno run -A scripts/task-runner.ts doctor",
"verify": "deno run -A scripts/task-runner.ts verify",
"test": "deno run -A scripts/task-runner.ts test",
"article": "deno run -A scripts/task-runner.ts article",
"preview": "deno run -A scripts/task-runner.ts preview",
"relay": "deno run -A scripts/task-runner.ts relay",
"weixin:relay": "deno task relay",
"docker": "deno run -A scripts/task-runner.ts docker",
"cf": "deno run -A scripts/task-runner.ts cf",
"build": "deno run -A scripts/task-runner.ts build",
"dashboard": "deno run -A scripts/task-runner.ts dashboard",
"docs": "deno run -A scripts/task-runner.ts docs"
},
"imports": {
"@deno-library/progress": "jsr:@deno-library/progress@^1.5.1",
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"@std/assert": "jsr:@std/assert@1",
"@src/": "./src/",
"@zilla/logger": "./src/core/logger/logger.ts",
"@zilla/logger-upstream": "jsr:@zilla/logger@^1.0.1",
"@sapling/markdown": "jsr:@sapling/markdown@^0.3.0",
"@cliffy/command": "jsr:@cliffy/command@1.1.0",
"vitepress": "npm:vitepress@1.6.4",
"vue": "npm:vue@3.5.34"
},
"exclude": [
"node_modules",
"dist",
"dashboard/.vite",
"build",
"public",
"**/*.ejs"
],
"lint": {
"exclude": [
"src/templates",
"src/features/weixin-article/rendering/templates"
],
"rules": {
"exclude": [
"no-import-prefix",
"no-unversioned-import",
"no-process-global",
"no-explicit-any",
"require-await"
]
}
}
}