-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
30 lines (30 loc) · 1.15 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
{
"name": "material-fox-updated",
"description": "Firefox user CSS theme, inspired by material design",
"version": "1.2.9",
"private": true,
"type": "module",
"author": "https://github.com/edelvarden",
"license": "MIT",
"scripts": {
"dev": "npm-run-all --parallel dev:chrome dev:content",
"dev:chrome": "sass --quiet --watch src/user-chrome.scss chrome/user-chrome.css --no-source-map --style compressed",
"dev:content": "sass --quiet --watch src/user-content.scss chrome/user-content.css --no-source-map --style compressed",
"build": "run-s build:chrome build:content",
"build:chrome": "sass --quiet --no-source-map --style compressed src/user-chrome.scss chrome/user-chrome.css",
"build:content": "sass --quiet --no-source-map --style compressed src/user-content.scss chrome/user-content.css",
"format": "prettier --write ./src",
"lint": "prettier --check .",
"pre-commit": "prettier --write . --list-different"
},
"devDependencies": {
"husky": "^9.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"stylefmt": "^6.0.3"
},
"browserslist": [
"last 5 Firefox version"
]
}