-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
66 lines (66 loc) · 1.75 KB
/
deno.json
File metadata and controls
66 lines (66 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
{
"tasks": {
"vitepress": "deno run -A npm:vitepress",
"docs:dev": "deno task vitepress dev docs",
"docs:build": "deno task vitepress build docs",
"build": "deno task docs:build",
"preview": "deno task vitepress preview docs",
"link": "deno run -A scripts/link.ts"
},
"nodeModulesDir": "auto",
"imports": {
"@vue/compiler-core": "npm:@vue/compiler-core@^3.5.32",
"mermaid": "npm:mermaid@^11.14.0",
"@leawind/inventory": "jsr:@leawind/inventory@^0.19.4",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@vueuse/shared": "npm:@vueuse/shared@^14.2.1",
"commander": "npm:commander@^14.0.3",
"markdown-it-mathjax3": "npm:markdown-it-mathjax3@^5.2.0",
"vitepress": "npm:vitepress@^1.6.4",
"vitepress-plugin-mermaid": "npm:vitepress-plugin-mermaid@^2.0.17",
"vue": "npm:vue@^3.5.32"
},
"lint": {
"include": [
"docs/.vitepress",
"scripts/"
],
"rules": {
"exclude": [
"ban-types",
"no-explicit-any",
"no-import-prefix",
"no-unreachable",
"require-await"
]
}
},
"fmt": {
"bracePosition": "sameLine",
"indentWidth": 2,
"lineWidth": 80,
"newLineKind": "lf",
"nextControlFlowPosition": "sameLine",
"operatorPosition": "nextLine",
"proseWrap": "preserve",
"quoteProps": "asNeeded",
"semiColons": false,
"singleBodyPosition": "sameLine",
"useBraces": "always",
"useTabs": false,
"singleQuote": true,
"spaceAround": false,
"spaceSurroundingProperties": true,
"trailingCommas": "onlyMultiLine",
"typeLiteral.separatorKind": "semiColon",
"include": [
".ai",
"**/*.md",
"**/*.json",
".github/",
"docs/",
"scripts/"
],
"exclude": []
}
}