Files
FixIt/package.json
T
Cell e4580190e9 chore(deps): update Node.js, pnpm, and dev dependencies
- Update Node.js version in .nvmrc from v20 to v24
- Update pnpm packageManager from 10.33.0 to 11.0.9
- Update pnpm-workspace.yaml to use allowBuilds instead of onlyBuiltDependencies
- Bump dev dependencies to latest versions: @antfu/eslint-config, @types/node, lint-staged, typescript
2026-05-11 03:45:45 +08:00

63 lines
1.7 KiB
JSON

{
"name": "@hugo-fixit/core",
"type": "module",
"version": "0.4.5",
"private": true,
"packageManager": "pnpm@11.0.9",
"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": "concurrently '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": "^8.2.0",
"@types/node": "^25.6.2",
"auto-changelog-plus": "^1.2.3",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"lint-staged": "^17.0.4",
"serve": "^14.2.6",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm -F versioning start dev && pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}