mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2026-06-21 23:38:39 +00:00
9ea9dcf930
@babel/core ^7.29.0 → ^7.29.7 @babel/preset-env ^7.29.0 → ^7.29.7 @commitlint/cli ^20.4.4 → ^21.0.2 @commitlint/config-conventional ^20.4.4 → ^21.0.2 @eslint/js ^10.0.0 → ^10.0.1 @rollup/plugin-babel ^7.0.0 → ^7.1.0 concurrently ^9.2.1 → ^10.0.3 conventional-changelog-conventionalcommits ^9.3.0 → ^9.3.1 eslint ^10.0.3 → ^10.5.0 globals ^17.4.0 → ^17.6.0 rollup ^4.59.0 → ^4.62.2 semantic-release ^25.0.3 → ^25.0.5 stylelint ^17.4.0 → ^17.13.0
149 lines
3.7 KiB
JSON
149 lines
3.7 KiB
JSON
{
|
|
"name": "jekyll-theme-chirpy",
|
|
"version": "7.5.0",
|
|
"description": "A minimal, responsive, and feature-rich Jekyll theme for technical writing.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/cotes2020/jekyll-theme-chirpy.git"
|
|
},
|
|
"author": "Cotes Chung",
|
|
"license": "MIT",
|
|
"since": 2019,
|
|
"bugs": {
|
|
"url": "https://github.com/cotes2020/jekyll-theme-chirpy/issues"
|
|
},
|
|
"homepage": "https://github.com/cotes2020/jekyll-theme-chirpy/",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "concurrently npm:build:*",
|
|
"build:css": "node purgecss.js",
|
|
"build:js": "rollup -c --bundleConfigAsCjs --environment BUILD:production",
|
|
"watch:js": "rollup -c --bundleConfigAsCjs -w",
|
|
"lint:js": "eslint",
|
|
"lint:scss": "stylelint _sass/**/*.scss",
|
|
"lint:fix:scss": "npm run lint:scss -- --fix",
|
|
"test": "npm run lint:js && npm run lint:scss",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.8",
|
|
"bootstrap": "^5.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.7",
|
|
"@babel/plugin-transform-class-properties": "^7.28.6",
|
|
"@babel/plugin-transform-private-methods": "^7.28.6",
|
|
"@babel/preset-env": "^7.29.7",
|
|
"@commitlint/cli": "^21.0.2",
|
|
"@commitlint/config-conventional": "^21.0.2",
|
|
"@eslint/js": "^10.0.1",
|
|
"@rollup/plugin-babel": "^7.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-terser": "^1.0.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"concurrently": "^10.0.3",
|
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
"eslint": "^10.5.0",
|
|
"globals": "^17.6.0",
|
|
"husky": "^9.1.7",
|
|
"purgecss": "^8.0.0",
|
|
"rollup": "^4.62.2",
|
|
"semantic-release": "^25.0.5",
|
|
"stylelint": "^17.13.0",
|
|
"stylelint-config-standard-scss": "^17.0.0"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "none"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions",
|
|
"> 0.2%",
|
|
"not dead"
|
|
],
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
],
|
|
"rules": {
|
|
"body-max-line-length": [
|
|
0,
|
|
"always"
|
|
]
|
|
}
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"production"
|
|
],
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"presetConfig": {
|
|
"types": [
|
|
{
|
|
"type": "feat",
|
|
"section": "Features"
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"section": "Bug Fixes"
|
|
},
|
|
{
|
|
"type": "perf",
|
|
"section": "Improvements"
|
|
},
|
|
{
|
|
"type": "refactor",
|
|
"section": "Changes",
|
|
"hidden": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
"changelogFile": "docs/CHANGELOG.md",
|
|
"changelogTitle": "# Changelog"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/npm",
|
|
{
|
|
"npmPublish": false
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/exec",
|
|
{
|
|
"prepareCmd": "bash tools/release.sh --prepare",
|
|
"publishCmd": "bash tools/release.sh"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"docs",
|
|
"package.json",
|
|
"*.gemspec"
|
|
],
|
|
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
|
|
}
|
|
],
|
|
"@semantic-release/github"
|
|
]
|
|
}
|
|
}
|