forked from hugo-fixit/FixIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
{
"name": "@hugo-fixit/core",
"type": "module",
"version": "0.4.3",
"private": true,
"packageManager": "pnpm@10.22.0",
"description": "Hugo FixIt core theme component source files",
"author": {
"name": "Lruihao",
"email": "1024@lruihao.cn",
"url": "https://lruihao.cn"
},
"license": "MIT",
"homepage": "https://fixit.lruihao.cn",
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/FixIt.git"
},
"bugs": {
"url": "https://github.com/hugo-fixit/FixIt/issues"
},
"keywords": [
"hugo",
"theme",
"fixit"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev:demo": "pnpm -F demo dev",
"dev:test": "pnpm -F test dev",
"dev:docs": "hugo server --source=../fixit-docs -D --disableFastRender --navigateToChanged --ignoreCache -O",
"build:demo": "pnpm -F demo build",
"build:test": "pnpm -F test build",
"build": "pnpm build:demo && pnpm build:test && pnpm -F integration start",
"preview": "serve public",
"lint": "eslint --cache .",
"version": "pnpm -F versioning start prod",
"postversion": "git push && git push --tags",
"changelog": "auto-changelog-plus --starting-date 2021-12-18",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@types/node": "^24.11.0",
"auto-changelog-plus": "^1.2.3",
"eslint": "^9.39.2",
"lint-staged": "^16.3.0",
"serve": "^14.2.5",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm -F versioning start dev && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}