db9e58bab2
Updates the requirements on [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core), [@babel/plugin-transform-class-properties](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-class-properties) and [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) to permit the latest version. Updates `@babel/core` to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-core) Updates `@babel/plugin-transform-class-properties` to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-plugin-transform-class-properties) Updates `@babel/preset-env` to 7.24.7 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.24.7/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development dependency-group: dev-deps - dependency-name: "@babel/plugin-transform-class-properties" dependency-type: direct:development dependency-group: dev-deps - dependency-name: "@babel/preset-env" dependency-type: direct:development dependency-group: dev-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
178 lines
4.5 KiB
JSON
178 lines
4.5 KiB
JSON
{
|
|
"name": "jekyll-theme-chirpy",
|
|
"version": "7.0.1",
|
|
"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/",
|
|
"scripts": {
|
|
"build": "concurrently npm:build:*",
|
|
"build:css": "purgecss -c purgecss.config.js",
|
|
"build:js": "rollup -c --bundleConfigAsCjs --environment BUILD:production",
|
|
"watch:js": "rollup -c --bundleConfigAsCjs -w",
|
|
"lint:scss": "stylelint _sass/**/*.scss",
|
|
"lint:fix:scss": "npm run lint:scss -- --fix",
|
|
"test": "npm run lint:scss",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.8",
|
|
"bootstrap": "^5.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.24.7",
|
|
"@babel/plugin-transform-class-properties": "^7.24.7",
|
|
"@babel/preset-env": "^7.24.7",
|
|
"@commitlint/cli": "^19.3.0",
|
|
"@commitlint/config-conventional": "^19.2.2",
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@rollup/plugin-yaml": "^4.1.2",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"concurrently": "^8.2.2",
|
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
"husky": "^9.0.11",
|
|
"purgecss": "^6.0.0",
|
|
"rollup": "^4.18.0",
|
|
"semantic-release": "^24.0.0",
|
|
"stylelint": "^16.6.1",
|
|
"stylelint-config-standard-scss": "^13.1.0"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "none"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions",
|
|
"> 0.2%",
|
|
"not dead"
|
|
],
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
],
|
|
"rules": {
|
|
"body-max-line-length": [
|
|
0,
|
|
"always"
|
|
]
|
|
}
|
|
},
|
|
"stylelint": {
|
|
"extends": "stylelint-config-standard-scss",
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"shorthand-property-no-redundant-values": null,
|
|
"at-rule-no-vendor-prefix": null,
|
|
"property-no-vendor-prefix": null,
|
|
"selector-no-vendor-prefix": null,
|
|
"value-no-vendor-prefix": null,
|
|
"color-function-notation": "legacy",
|
|
"alpha-value-notation": "number",
|
|
"selector-not-notation": "simple",
|
|
"color-hex-length": "long",
|
|
"declaration-block-single-line-max-declarations": 3,
|
|
"scss/operator-no-newline-after": null,
|
|
"rule-empty-line-before": [
|
|
"always",
|
|
{
|
|
"ignore": [
|
|
"after-comment",
|
|
"first-nested"
|
|
]
|
|
}
|
|
],
|
|
"value-keyword-case": [
|
|
"lower",
|
|
{
|
|
"ignoreProperties": [
|
|
"/^\\$/"
|
|
]
|
|
}
|
|
],
|
|
"media-feature-range-notation": "prefix"
|
|
}
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|