Files
FreshRSS/package.json
T
dependabot[bot] c83e01f03c chore(deps-dev): bump eslint from 10.8.1 to 10.9.1 in the eslint group (#9253)
Bumps the eslint group with 1 update: [eslint](https://github.com/eslint/eslint).


Updates `eslint` from 10.8.1 to 10.9.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v10.8.1...v10.9.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: eslint
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-09-01 21:33:14 +02:00

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-cli2",
"markdownlint_fix": "markdownlint-cli2 --fix",
"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": "^10.9.1",
"@eslint/js": "^10.0.1",
"globals": "^17.11.0",
"markdownlint-cli2": "^0.23.2",
"neostandard": "^0.14.0-next.1",
"rtlcss": "^4.3.0",
"stylelint": "^17.14.1",
"stylelint-config-recommended": "^18.0.0",
"stylelint-order": "^8.1.1",
"@stylistic/stylelint-plugin": "^5.3.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
}
}
]
}
}
}