mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-07-16 10:02:59 -04:00
Bumps the eslint group with 3 updates in the / directory: [eslint](https://github.com/eslint/eslint), [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) and [globals](https://github.com/sindresorhus/globals). Updates `eslint` from 9.39.4 to 10.6.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/compare/v9.39.4...v10.6.0) Updates `@eslint/js` from 9.39.4 to 10.0.1 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js) Updates `globals` from 17.4.0 to 17.7.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v17.4.0...v17.7.0) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-version: 10.0.1 dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: eslint dependency-version: 10.3.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: eslint - dependency-name: globals dependency-version: 17.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint ... Signed-off-by: dependabot[bot] <support@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": ">=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": "^10.6.0",
|
|
"@eslint/js": "^10.0.1",
|
|
"globals": "^17.7.0",
|
|
"markdownlint-cli": "^0.49.0",
|
|
"neostandard": "^0.13.0",
|
|
"rtlcss": "^4.3.0",
|
|
"stylelint": "^17.12.0",
|
|
"stylelint-config-recommended": "^18.0.0",
|
|
"stylelint-order": "^8.1.1",
|
|
"@stylistic/stylelint-plugin": "^5.2.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
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|