Files
FixIt/package.json
T
dependabot[bot] 581d8373bf chore(deps-dev): bump @types/node in the npm-development group
Bumps the npm-development group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 24.10.4 to 24.10.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.10.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-27 11:28:01 +08:00

62 lines
1.7 KiB
JSON

{
"name": "@hugo-fixit/core",
"type": "module",
"version": "0.4.2",
"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": "^6.7.3",
"@types/node": "^24.10.15",
"auto-changelog-plus": "^1.2.3",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"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"
}
}