-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"name": "@gohugo-ananke/documentation",
"description": "Documentation for Ananke, a Hugo theme and module.",
"version": "0.0.1",
"license": "MIT",
"author": "Patrick Kollitsch <davidsneighbourdev+gh@gmail.com>",
"keywords": [
"hugo",
"hugo-theme",
"hugo-module",
"documentation"
],
"devDependencies": {
"@github/markdownlint-github": "0.8.1",
"markdownlint": "0.40.0",
"markdownlint-cli2": "0.22.1",
"markdownlint-rule-extended-ascii": "0.2.1",
"markdownlint-rule-list-duplicates": "0.0.1",
"markdownlint-rule-relative-links": "5.1.0",
"markdownlint-rule-search-replace": "1.2.0",
"markdownlint-rule-title-case-style": "0.4.3",
"wireit": "0.14.12"
},
"scripts": {
"contributors:merge": "node ./scripts/merge-all-contributors.mjs",
"lint:links": "lychee --config lychee.toml http://localhost:1313",
"lint:markdown": "markdownlint-cli2 content/**/*.{md,mdx}",
"lint:markdown:fix": "markdownlint-cli2 --fix content/**/*.{md,mdx}",
"server": "wireit"
},
"cspell": {
"version": "0.2",
"language": "en-GB",
"ignorePaths": [
"CHANGELOG.md",
"LICENSE.md",
"node_modules"
],
"dictionaries": [
"workspace-dictionary"
],
"dictionaryDefinitions": [
{
"name": "workspace-dictionary",
"path": ".vscode/dictionary.txt"
}
]
},
"type": "module",
"wireit": {
"server": {
"command": "hugo server --watch --disableFastRender --tlsAuto",
"dependencies": [
"server:tls"
],
"readyRegex": "Web Server is available at",
"env": {
"HUGO_ENV": "development"
}
},
"server:tls": {
"command": "hugo server trust"
}
}
}