-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.43 KB
/
package.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
{
"name": "fixit-docs",
"version": "1.0.0",
"private": true,
"description": "Documentation of FixIt theme",
"keywords": [
"hugo-theme-fixit",
"documentation",
"hugo",
"hugo-blog"
],
"homepage": "https://github.com/hugo-fixit/docs#readme",
"bugs": {
"url": "https://github.com/hugo-fixit/docs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/docs.git"
},
"license": "MIT",
"author": "Lruihao (https://lruihao.cn)",
"scripts": {
"algolia": "atomic-algolia",
"fix:md": "autocorrect content --fix && markdownlint-cli2 \"content/**/*.md\" --fix",
"lint:md": "autocorrect content --lint && markdownlint-cli2 \"content/**/*.md\"",
"prepare": "husky install",
"build": "hugo --gc --minify --logLevel info",
"server": "hugo server -D --disableFastRender --navigateToChanged --ignoreCache",
"server:production": "npm run server -- -e production",
"server:development": "cross-env HUGO_MODULE_WORKSPACE=hugo.work npm run server -- --ignoreVendorPaths \"**\"",
"update:theme": "hugo mod get -u github.com/hugo-fixit/FixIt@dev && hugo mod tidy"
},
"devDependencies": {
"atomic-algolia": "^0.3.19",
"autocorrect-node": "^2.13.0",
"cross-env": "^7.0.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdownlint-cli2": "^0.14.0",
"markdownlint-rule-search-replace": "^1.2.0"
},
"engines": {
"node": ">=18"
}
}