mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
053e5b4bd0
Bumps the npm-development group with 2 updates: [lint-staged](https://github.com/lint-staged/lint-staged) and [tsx](https://github.com/privatenumber/tsx). Updates `lint-staged` from 16.2.6 to 16.2.7 - [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.6...v16.2.7) Updates `tsx` from 4.20.6 to 4.21.0 - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.20.6...v4.21.0) --- updated-dependencies: - dependency-name: lint-staged dependency-version: 16.2.7 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: tsx dependency-version: 4.21.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "@hugo-fixit/core",
|
|
"type": "module",
|
|
"version": "0.4.0-alpha.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 && pnpm changelog -p",
|
|
"postversion": "git push && git push --tags",
|
|
"changelog": "auto-changelog-plus",
|
|
"prepare": "simple-git-hooks"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^6.2.0",
|
|
"@types/node": "^24.10.1",
|
|
"auto-changelog-plus": "^1.2.3",
|
|
"eslint": "^9.39.1",
|
|
"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"
|
|
}
|
|
}
|