package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "freshrss",
  3. "type": "module",
  4. "description": "A free, self-hostable aggregator",
  5. "homepage": "https://freshrss.org/",
  6. "readmeFilename": "README.md",
  7. "bugs": {
  8. "url": "https://github.com/FreshRSS/FreshRSS/issues"
  9. },
  10. "keywords": [
  11. "news",
  12. "aggregator",
  13. "RSS",
  14. "Atom",
  15. "WebSub"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/FreshRSS/FreshRSS.git"
  20. },
  21. "license": "AGPL-3.0",
  22. "engines": {
  23. "node": ">=18"
  24. },
  25. "scripts": {
  26. "eslint": "eslint .",
  27. "eslint_fix": "eslint --fix .",
  28. "markdownlint": "markdownlint '**/*.md'",
  29. "markdownlint_fix": "markdownlint --fix '**/*.md'",
  30. "rtlcss": "rtlcss -d p/themes/ && find p/themes/ -type f -name '*.rtl.rtl.css' -delete",
  31. "stylelint": "stylelint '**/*.css' && stylelint --custom-syntax postcss-scss '**/*.scss'",
  32. "stylelint_fix": "stylelint --fix '**/*.css' && stylelint --fix --custom-syntax postcss-scss '**/*.scss'",
  33. "test": "npm run eslint && npm run stylelint && npm run markdownlint",
  34. "fix": "npm run rtlcss && npm run stylelint_fix && npm run eslint_fix && npm run markdownlint_fix"
  35. },
  36. "devDependencies": {
  37. "eslint": "^9.9.1",
  38. "@eslint/js": "^9.9.0",
  39. "globals": "^15.9.0",
  40. "markdownlint-cli": "^0.41.0",
  41. "neostandard": "^0.11.4",
  42. "rtlcss": "^4.3.0",
  43. "sass": "^1.77.8",
  44. "stylelint": "^16.9.0",
  45. "stylelint-config-recommended-scss": "^14.1.0",
  46. "stylelint-order": "^6.0.4",
  47. "@stylistic/stylelint-plugin": "^3.0.1"
  48. },
  49. "rtlcssConfig": {}
  50. }