2021-01-23 10:07:18 +03:00
|
|
|
{
|
|
|
|
"name": "jekyll-theme-chirpy",
|
2024-12-05 16:33:44 +03:00
|
|
|
"version": "7.2.1",
|
2023-10-23 00:38:07 +03:00
|
|
|
"description": "A minimal, responsive, and feature-rich Jekyll theme for technical writing.",
|
2021-01-23 10:07:18 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/cotes2020/jekyll-theme-chirpy.git"
|
|
|
|
},
|
|
|
|
"author": "Cotes Chung",
|
|
|
|
"license": "MIT",
|
2024-06-05 18:51:10 +03:00
|
|
|
"since": 2019,
|
2021-01-23 10:07:18 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/cotes2020/jekyll-theme-chirpy/issues"
|
|
|
|
},
|
2023-03-13 15:20:59 +03:00
|
|
|
"homepage": "https://github.com/cotes2020/jekyll-theme-chirpy/",
|
2022-10-21 19:12:31 +03:00
|
|
|
"scripts": {
|
2024-05-11 06:07:48 +03:00
|
|
|
"build": "concurrently npm:build:*",
|
2024-11-24 19:05:28 +03:00
|
|
|
"build:css": "node purgecss.js",
|
2024-05-11 05:29:14 +03:00
|
|
|
"build:js": "rollup -c --bundleConfigAsCjs --environment BUILD:production",
|
|
|
|
"watch:js": "rollup -c --bundleConfigAsCjs -w",
|
2024-05-11 06:07:48 +03:00
|
|
|
"lint:scss": "stylelint _sass/**/*.scss",
|
2024-05-11 09:24:15 +03:00
|
|
|
"lint:fix:scss": "npm run lint:scss -- --fix",
|
2024-06-07 14:27:54 +03:00
|
|
|
"test": "npm run lint:scss",
|
|
|
|
"prepare": "husky"
|
2024-05-11 05:29:14 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@popperjs/core": "^2.11.8",
|
|
|
|
"bootstrap": "^5.3.3"
|
2022-10-21 19:12:31 +03:00
|
|
|
},
|
2022-03-01 18:23:20 +03:00
|
|
|
"devDependencies": {
|
2024-11-24 19:18:06 +03:00
|
|
|
"@babel/core": "^7.26.0",
|
|
|
|
"@babel/plugin-transform-class-properties": "^7.25.9",
|
|
|
|
"@babel/plugin-transform-private-methods": "^7.25.9",
|
|
|
|
"@babel/preset-env": "^7.26.0",
|
|
|
|
"@commitlint/cli": "^19.6.0",
|
|
|
|
"@commitlint/config-conventional": "^19.6.0",
|
2023-11-06 10:33:59 +03:00
|
|
|
"@rollup/plugin-babel": "^6.0.4",
|
2024-11-24 19:18:06 +03:00
|
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
2023-11-06 10:33:59 +03:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2024-04-14 00:15:27 +03:00
|
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
|
|
"@semantic-release/exec": "^6.0.3",
|
|
|
|
"@semantic-release/git": "^10.0.1",
|
2024-11-24 19:18:06 +03:00
|
|
|
"concurrently": "^9.1.0",
|
2024-06-03 20:36:27 +03:00
|
|
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
2024-11-24 19:18:06 +03:00
|
|
|
"husky": "^9.1.7",
|
|
|
|
"purgecss": "^7.0.2",
|
|
|
|
"rollup": "^4.27.4",
|
|
|
|
"semantic-release": "^24.2.0",
|
|
|
|
"stylelint": "^16.10.0",
|
2024-04-20 20:14:21 +03:00
|
|
|
"stylelint-config-standard-scss": "^13.1.0"
|
2023-11-08 20:53:29 +03:00
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"trailingComma": "none"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"last 2 versions",
|
|
|
|
"> 0.2%",
|
|
|
|
"not dead"
|
|
|
|
],
|
|
|
|
"commitlint": {
|
2024-01-13 17:13:15 +03:00
|
|
|
"extends": [
|
|
|
|
"@commitlint/config-conventional"
|
|
|
|
],
|
2023-11-08 20:53:29 +03:00
|
|
|
"rules": {
|
|
|
|
"body-max-line-length": [
|
|
|
|
0,
|
|
|
|
"always"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2024-04-14 00:15:27 +03:00
|
|
|
"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",
|
|
|
|
{
|
2024-05-31 23:11:01 +03:00
|
|
|
"prepareCmd": "bash tools/release.sh --prepare",
|
|
|
|
"publishCmd": "bash tools/release.sh"
|
2024-04-14 00:15:27 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"@semantic-release/git",
|
|
|
|
{
|
|
|
|
"assets": [
|
|
|
|
"docs",
|
|
|
|
"package.json",
|
|
|
|
"*.gemspec"
|
|
|
|
],
|
|
|
|
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"@semantic-release/github"
|
2023-11-08 20:53:29 +03:00
|
|
|
]
|
2021-01-23 10:07:18 +03:00
|
|
|
}
|
|
|
|
}
|