2021-01-23 10:07:18 +03:00
|
|
|
{
|
|
|
|
"name": "jekyll-theme-chirpy",
|
2024-09-23 14:56:31 +03:00
|
|
|
"version": "7.1.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:*",
|
|
|
|
"build:css": "purgecss -c purgecss.config.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-08-24 19:25:29 +03:00
|
|
|
"@babel/core": "^7.25.2",
|
|
|
|
"@babel/plugin-transform-class-properties": "^7.25.4",
|
|
|
|
"@babel/preset-env": "^7.25.4",
|
2024-09-23 14:41:28 +03:00
|
|
|
"@commitlint/cli": "^19.5.0",
|
|
|
|
"@commitlint/config-conventional": "^19.5.0",
|
2023-11-06 10:33:59 +03:00
|
|
|
"@rollup/plugin-babel": "^6.0.4",
|
2024-05-11 05:29:14 +03:00
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
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-09-23 14:41:28 +03:00
|
|
|
"concurrently": "^9.0.1",
|
2024-06-03 20:36:27 +03:00
|
|
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
2024-09-23 14:41:28 +03:00
|
|
|
"husky": "^9.1.6",
|
2024-05-11 06:07:48 +03:00
|
|
|
"purgecss": "^6.0.0",
|
2024-09-23 14:41:28 +03:00
|
|
|
"rollup": "^4.21.3",
|
|
|
|
"semantic-release": "^24.1.1",
|
|
|
|
"stylelint": "^16.9.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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
},
|
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
|
|
|
}
|
|
|
|
}
|