-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "fixit-core",
"version": "0.3.16",
"private": true,
"description": "Hugo FixIt core theme component 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 -O",
"server:production": "npm run server -- -e production",
"server:docs": "hugo server --source=../fixit-docs -D --disableFastRender --navigateToChanged --ignoreCache -O",
"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.1.1",
"husky": "^9.1.7"
},
"engines": {
"node": ">=18"
}
}