-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "@hugo-fixit/docs",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.15.1",
"description": "Documentation of FixIt theme",
"author": "Lruihao (https://lruihao.cn)",
"license": "MIT",
"homepage": "https://github.com/hugo-fixit/docs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/docs.git"
},
"bugs": {
"url": "https://github.com/hugo-fixit/docs/issues"
},
"keywords": [
"hugo-theme-fixit",
"documentation",
"hugo",
"hugo-blog"
],
"engines": {
"node": ">=20.17"
},
"scripts": {
"algolia": "atomic-algolia",
"lint": "eslint && autocorrect content --lint && markdownlint-cli2 \"content/**/*.md\"",
"lint:fix": "eslint --fix && autocorrect content --fix && markdownlint-cli2 \"content/**/*.md\" --fix",
"prepare": "simple-git-hooks",
"build": "hugo --gc --minify --logLevel info",
"server": "hugo server -D --disableFastRender --navigateToChanged --ignoreCache --renderToMemory --noHTTPCache -O",
"server:production": "npm run server -- -e production",
"server:development": "cross-env HUGO_MODULE_WORKSPACE=hugo.work npm run server -- --ignoreVendorPaths \"**\"",
"update": "hugo mod get -u && hugo mod tidy"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"atomic-algolia": "^0.3.19",
"autocorrect-node": "^2.14.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"markdownlint-rule-search-replace": "^1.2.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}