mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 07:18:57 +00:00
956649b2f7
Bumps the npm-development group with 4 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [auto-changelog-plus](https://github.com/Lruihao/auto-changelog-plus), [eslint](https://github.com/eslint/eslint) and [lint-staged](https://github.com/lint-staged/lint-staged). Updates `@types/node` from 24.7.2 to 24.9.2 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `auto-changelog-plus` from 1.2.1 to 1.2.2 - [Release notes](https://github.com/Lruihao/auto-changelog-plus/releases) - [Changelog](https://github.com/Lruihao/auto-changelog-plus/blob/main/CHANGELOG.md) - [Commits](https://github.com/Lruihao/auto-changelog-plus/compare/v1.2.1...v1.2.2) Updates `eslint` from 9.37.0 to 9.39.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v9.37.0...v9.39.0) Updates `lint-staged` from 16.2.4 to 16.2.6 - [Release notes](https://github.com/lint-staged/lint-staged/releases) - [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md) - [Commits](https://github.com/lint-staged/lint-staged/compare/v16.2.4...v16.2.6) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.9.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: auto-changelog-plus dependency-version: 1.2.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: eslint dependency-version: 9.39.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: lint-staged dependency-version: 16.2.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "@hugo-fixit/core",
|
|
"type": "module",
|
|
"version": "0.4.0-alpha.1",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.5.2",
|
|
"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 && pnpm changelog -p",
|
|
"postversion": "git push && git push --tags",
|
|
"changelog": "auto-changelog-plus",
|
|
"prepare": "simple-git-hooks"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^5.4.1",
|
|
"@types/node": "^24.9.2",
|
|
"auto-changelog-plus": "^1.2.2",
|
|
"eslint": "^9.39.0",
|
|
"lint-staged": "^16.2.6",
|
|
"serve": "^14.2.5",
|
|
"simple-git-hooks": "^2.13.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"on-headers": ">=1.1.0"
|
|
}
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm -F versioning start dev && pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "eslint --fix"
|
|
}
|
|
}
|