aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/package.json
blob: 784ae344316aef5d0f26adc96512d2b2f193f2db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  "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.23.0",
    "@eslint/js": "^9.20.0",
    "globals": "^16.0.0",
    "markdownlint-cli": "^0.44.0",
    "neostandard": "^0.12.1",
    "rtlcss": "^4.3.0",
    "sass": "^1.86.1",
    "stylelint": "^16.17.0",
    "stylelint-config-recommended-scss": "^14.1.0",
    "stylelint-order": "^6.0.4",
    "@stylistic/stylelint-plugin": "^3.1.2"
  },
  "rtlcssConfig": {}
}