2021-01-23 10:07:18 +03:00
|
|
|
{
|
|
|
|
"name": "jekyll-theme-chirpy",
|
2024-03-22 22:41:58 +03:00
|
|
|
"version": "6.5.4",
|
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",
|
|
|
|
"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-02-13 18:35:32 +03:00
|
|
|
"prebuild": "npx rimraf assets/js/dist",
|
2023-03-13 15:20:59 +03:00
|
|
|
"build": "NODE_ENV=production npx rollup -c --bundleConfigAsCjs",
|
2024-02-13 18:35:32 +03:00
|
|
|
"prewatch": "npx rimraf assets/js/dist",
|
2023-03-13 15:20:59 +03:00
|
|
|
"watch": "npx rollup -c --bundleConfigAsCjs -w",
|
2022-10-21 19:12:31 +03:00
|
|
|
"test": "npx stylelint _sass/**/*.scss",
|
2023-03-13 15:20:59 +03:00
|
|
|
"fixlint": "npm run test -- --fix"
|
2022-10-21 19:12:31 +03:00
|
|
|
},
|
2022-03-01 18:23:20 +03:00
|
|
|
"devDependencies": {
|
2024-02-14 19:12:45 +03:00
|
|
|
"@babel/core": "^7.23.9",
|
2023-03-13 15:20:59 +03:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2024-02-14 19:12:45 +03:00
|
|
|
"@babel/preset-env": "^7.23.9",
|
|
|
|
"@commitlint/cli": "^18.6.1",
|
|
|
|
"@commitlint/config-conventional": "^18.6.2",
|
2023-11-06 10:33:59 +03:00
|
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2024-02-14 19:12:45 +03:00
|
|
|
"husky": "^9.0.11",
|
2023-10-04 22:34:38 +03:00
|
|
|
"rimraf": "^5.0.5",
|
2024-02-14 19:12:45 +03:00
|
|
|
"rollup": "^4.10.0",
|
2023-11-06 10:33:59 +03:00
|
|
|
"rollup-plugin-license": "^3.2.0",
|
2024-02-14 19:12:45 +03:00
|
|
|
"stylelint": "^16.2.1",
|
|
|
|
"stylelint-config-standard-scss": "^13.0.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"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"standard-version": {
|
|
|
|
"skip": {
|
|
|
|
"commit": true,
|
|
|
|
"tag": true
|
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
{
|
|
|
|
"type": "feat",
|
|
|
|
"section": "Features"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "fix",
|
|
|
|
"section": "Bug Fixes"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "perf",
|
|
|
|
"section": "Improvements"
|
|
|
|
}
|
|
|
|
]
|
2021-01-23 10:07:18 +03:00
|
|
|
}
|
|
|
|
}
|