mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-18 05:17:17 -04:00
* Manual npm update (waiting for ESLint 10 support) Instead of https://github.com/FreshRSS/Extensions/pull/448 While waiting for https://github.com/neostandard/neostandard/issues/350 * Bump min node version based on dependencies Needed for e.g. CSSTools
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": ">=20"
|
|
},
|
|
"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.4",
|
|
"@eslint/js": "^9.39.4",
|
|
"globals": "^17.4.0",
|
|
"markdownlint-cli": "^0.48.0",
|
|
"neostandard": "^0.13.0",
|
|
"rtlcss": "^4.3.0",
|
|
"stylelint": "^17.6.0",
|
|
"stylelint-config-recommended": "^18.0.0",
|
|
"stylelint-order": "^8.1.1",
|
|
"@stylistic/stylelint-plugin": "^5.1.0"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|