mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-26 11:38:18 -05:00
* Migrate to ESLint 9 * https://eslint.org/docs/latest/use/migrate-to-9.0.0 * https://eslint.style/guide/migration * https://github.com/neostandard/neostandard/ (https://github.com/standard/standard/issues/1948) fix broken Dependabot PRs such as https://github.com/FreshRSS/FreshRSS/pull/6680 * comma-dangle rule is already included * Use more standard filename * More flexible syntax globals * resolveIgnoresFromGitignore * Dependabog update * Relax object-shorthand * GitHub action node-version * GitHub action node-version again * object-shorthand: off * node >=18 due to dependencies
51 lines
1.5 KiB
JSON
51 lines
1.5 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 --custom-syntax postcss-scss '**/*.scss'",
|
|
"stylelint_fix": "stylelint --fix '**/*.css' && stylelint --fix --custom-syntax postcss-scss '**/*.scss'",
|
|
"test": "npm run eslint && npm run stylelint && npm run markdownlint",
|
|
"fix": "npm run rtlcss && npm run stylelint_fix && npm run eslint_fix && npm run markdownlint_fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^9.8.0",
|
|
"@eslint/js": "^9.8.0",
|
|
"globals": "^15.9.0",
|
|
"markdownlint-cli": "^0.41.0",
|
|
"neostandard": "^0.11.2",
|
|
"rtlcss": "^4.2.0",
|
|
"sass": "^1.77.8",
|
|
"stylelint": "^16.8.1",
|
|
"stylelint-config-recommended-scss": "^14.1.0",
|
|
"stylelint-order": "^6.0.4",
|
|
"@stylistic/stylelint-plugin": "^3.0.0"
|
|
},
|
|
"rtlcssConfig": {}
|
|
}
|