-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeno.json
74 lines (74 loc) · 3.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"tasks": {
"news": "deno run --allow-net --allow-read --allow-write ./scripts/news.ts && deno fmt src/content/news/",
"uesp": "deno run --allow-net --allow-read --allow-write ./scripts/uesp.ts",
"category": "deno run --allow-net --allow-read --allow-write ./scripts/category.ts",
"esoitem": "deno run --v8-flags='--max_old_space_size=8192' --allow-net --allow-read --allow-write --allow-env ./scripts/esoitem.ts",
"esohub": "deno run --allow-net --allow-read --allow-write --allow-env ./scripts/esohub.ts",
"epub": "deno run --allow-net --allow-read --allow-write --allow-env ./scripts/epub.ts",
"skill": "deno run --allow-net --allow-read --allow-env ./scripts/skill.ts",
"permalinks": "deno run --allow-net --allow-write ./scripts/permalinks.ts",
"contributors": "deno run --allow-net --allow-read --allow-write ./scripts/contributors.ts"
},
"fmt": {
"lineWidth": 120,
"exclude": [
"node_modules",
"dist",
"public",
"scripts/tmp",
".astro"
]
},
"lint": {
"rules": {
"exclude": [
"no-unused-vars"
]
},
"exclude": [
"node_modules",
"dist",
"public",
"src",
"scripts/tmp",
".astro"
]
},
"test": {
"exclude": [
"node_modules",
"src"
]
},
"imports": {
"fastest-levenshtein": "https://deno.land/x/fastest_levenshtein@1.0.10/mod.ts",
"hast": "https://esm.sh/v99/@types/hast@2.3.4/index.d.ts",
"hastscript": "https://esm.sh/v99/hastscript@7.1.0",
"hast-util-is-element": "https://esm.sh/v99/hast-util-is-element@2.1.2",
"hast-util-select": "https://esm.sh/v99/hast-util-select@5.0.2",
"hast-util-to-html": "https://esm.sh/v99/hast-util-to-html@8.0.3",
"hast-util-to-mdast": "https://esm.sh/v99/hast-util-to-mdast@8.4.1",
"hast-util-to-string": "https://esm.sh/v99/hast-util-to-string@2.0.0",
"mdast": "https://esm.sh/v99/@types/mdast@3.0.10/index.d.ts",
"mdast-util-to-markdown": "https://esm.sh/v99/mdast-util-to-markdown@1.3.0",
"nlcst-to-string": "https://esm.sh/v99/nlcst-to-string@3.1.0",
"rehype-parse": "https://esm.sh/v99/rehype-parse@8.0.4",
"rehype-remark": "https://esm.sh/v99/rehype-remark@9.1.2",
"rehype-remove-comments": "https://esm.sh/rehype-remove-comments@5.0.0",
"remark-frontmatter": "https://esm.sh/remark-frontmatter@4.0.1",
"remark-gfm": "https://esm.sh/remark-gfm@3.0.1",
"remark-remove-comments": "https://esm.sh/remark-remove-comments@0.2.0",
"remark-stringify": "https://esm.sh/v99/remark-stringify@10.0.2",
"satori": "https://esm.sh/satori@0.0.44",
"unified": "https://esm.sh/v99/unified@10.1.2",
"unist": "https://esm.sh/v99/@types/unist@2.0.6/index.d.ts",
"unist-util-visit": "https://esm.sh/v99/unist-util-visit@4.1.1",
"vfile": "https://esm.sh/v99/vfile@5.3.6",
"yaml": "https://deno.land/std@0.166.0/encoding/yaml.ts",
"yup": "https://esm.sh/v99/yup@0.32.11",
"asserts": "https://deno.land/std@0.166.0/testing/asserts.ts",
"@/": "./src/"
},
"scopes": {}
}