-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 KB
/
package.json
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
51
52
53
54
55
56
57
58
{
"name": "tt-rss-feedly-theme",
"version": "4.1.0",
"description": "Feedly theme for Tiny Tiny RSS",
"main": "feedly.css",
"repository": {
"type": "git",
"url": "https://github.com/levito/tt-rss-feedly-theme.git"
},
"author": "Veit Lehmann",
"license": "MIT",
"private": true,
"scripts": {
"build": "foreach -g 'src/!(_)*.less' -x 'lessc --source-map-inline #{path} > #{name}.css'",
"clean": "git clean -ffdx *.css dist",
"dist:compress": "foreach -g '*.css' -x 'lightningcss --browserslist -m #{path} -o dist/#{path}'",
"dist:copy": "cp -R feedly local-overrides.js dist",
"dist:clone": "./dist.sh -c",
"dist": "npm-run-all clean lint build -p dist:* && ./dist.sh -p",
"lint": "stylelint 'src/**/*.less'",
"postinstall": "git submodule update --init",
"prepare": "husky install",
"start": "chokidar 'src/**/*.less' --initial -c 'run-s lint build'"
},
"browserslist": "> 1%, Firefox ESR, not dead",
"lint-staged": {
"src/**/*.less": [
"stylelint --fix",
"prettier --write"
]
},
"prettier": {
"printWidth": 120
},
"stylelint": {
"extends": "stylelint-config-property-sort-order-smacss",
"customSyntax": "postcss-less",
"defaultSeverity": "warning",
"ignoreFiles": [
"*.css",
"tt-rss/**"
]
},
"devDependencies": {
"@goenning/foreach-cli": "^1.9.0",
"chokidar-cli": "^3.0.0",
"husky": "^8.0.3",
"less": "^4.1.3",
"less-plugin-reflections": "github:seven-phases-max/less-plugin-reflections",
"lightningcss-cli": "^1.19.0",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"postcss-less": "^6.0.0",
"prettier": "^2.8.7",
"stylelint": "^15.3.0",
"stylelint-config-property-sort-order-smacss": "^9.1.0"
}
}