mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
* Bump markdownlint-cli from 0.45.0 to 0.46.0 Bumps [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) from 0.45.0 to 0.46.0. - [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases) - [Commits](https://github.com/igorshubovych/markdownlint-cli/compare/v0.45.0...v0.46.0) --- updated-dependencies: - dependency-name: markdownlint-cli dependency-version: 0.46.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Disable table-column-style for now https://github.com/DavidAnson/markdownlint/blob/main/doc/md060.md --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
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.0",
|
|
"@eslint/js": "^9.20.0",
|
|
"globals": "^16.5.0",
|
|
"markdownlint-cli": "^0.46.0",
|
|
"neostandard": "^0.12.2",
|
|
"rtlcss": "^4.3.0",
|
|
"stylelint": "^16.26.1",
|
|
"stylelint-config-recommended": "^17.0.0",
|
|
"stylelint-order": "^7.0.0",
|
|
"@stylistic/stylelint-plugin": "^4.0.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
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|