-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "fixit-src",
"version": "0.3.15",
"private": true,
"description": "FixIt theme source files",
"keywords": [
"hugo",
"theme",
"fixit"
],
"homepage": "https://github.com/hugo-fixit/FixIt#readme",
"bugs": {
"url": "https://github.com/hugo-fixit/FixIt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/FixIt.git"
},
"license": "MIT",
"author": "Lruihao (https://lruihao.cn)",
"type": "module",
"scripts": {
"build": "hugo --source=demo --themesDir ../.. --theme $PWD --gc --minify --logLevel info",
"server": "hugo server --source=demo --themesDir ../.. --theme $PWD -D --disableFastRender --navigateToChanged --ignoreCache",
"server:production": "npm run server -- -e production",
"server:docs": "hugo server --source=../fixit-docs -D --disableFastRender --navigateToChanged --ignoreCache",
"version": "fixit-releaser version --prod",
"postversion": "git push && git push --tags && npm run release",
"release": "fixit-releaser changelog",
"prepare": "husky"
},
"devDependencies": {
"@hugo-fixit/fixit-releaser": "^1.0.1",
"husky": "^9.1.6"
}
}