mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-26 10:12:52 -04:00
Bumps the stylelint group with 1 update: [stylelint](https://github.com/stylelint/stylelint). Updates `stylelint` from 17.1.0 to 17.4.0 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/17.1.0...17.4.0) --- updated-dependencies: - dependency-name: stylelint dependency-version: 17.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: stylelint ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"name": "freshrss",
|
|
"type": "module",
|
|
"description": "A free, self-hostable aggregator",
|
|
"homepage": "https://freshrss.org/",
|
|
"readmeFilename": "README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/FreshRSS/FreshRSS/issues"
|
|
},
|
|
"keywords": [
|
|
"news",
|
|
"aggregator",
|
|
"RSS",
|
|
"Atom",
|
|
"WebSub"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/FreshRSS/FreshRSS.git"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint .",
|
|
"eslint_fix": "eslint --fix .",
|
|
"markdownlint": "markdownlint '**/*.md'",
|
|
"markdownlint_fix": "markdownlint --fix '**/*.md'",
|
|
"rtlcss": "rtlcss -d p/themes/ && find p/themes/ -type f -name '*.rtl.rtl.css' -delete",
|
|
"stylelint": "stylelint '**/*.css'",
|
|
"stylelint_fix": "stylelint --fix '**/*.css'",
|
|
"test": "npm run eslint && npm run stylelint && npm run markdownlint",
|
|
"fix": "npm run eslint_fix && npm run stylelint_fix && npm run rtlcss && npm run markdownlint_fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.39.2",
|
|
"@eslint/js": "^9.20.0",
|
|
"globals": "^17.0.0",
|
|
"markdownlint-cli": "^0.47.0",
|
|
"neostandard": "^0.12.2",
|
|
"rtlcss": "^4.3.0",
|
|
"stylelint": "^17.4.0",
|
|
"stylelint-config-recommended": "^18.0.0",
|
|
"stylelint-order": "^7.0.1",
|
|
"@stylistic/stylelint-plugin": "^5.0.1"
|
|
},
|
|
"rtlcssConfig": {
|
|
"options": {
|
|
"processUrls": {
|
|
"atrule": true,
|
|
"decl": false
|
|
},
|
|
"stringMap": [
|
|
{
|
|
"name": "import-rtl",
|
|
"priority": 10,
|
|
"exclusive": true,
|
|
"search": ".css",
|
|
"replace": ".rtl.css",
|
|
"options": {
|
|
"scope": "url",
|
|
"ignoreCase": false
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|