forked from denschub/chrome-mask
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.01 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.01 KB
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
{
"name": "chromium-mask",
"version": "2.0.0",
"description": "Makes Chromium browsers (Opera, Brave, Edge, Vivaldi, Arc, etc.) compatible with sites requiring mainstream browsers.",
"author": "mr-september",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "node -e \"const fs = require('fs'); if (fs.existsSync('dist')) fs.rmSync('dist', {recursive: true, force: true});\"",
"build": "npm run clean && node -e \"const fs = require('fs'); if (!fs.existsSync('dist')) fs.mkdirSync('dist');\" && node build.js",
"build-simple": "npm run clean && node -e \"const fs = require('fs'); if (!fs.existsSync('dist')) fs.mkdirSync('dist');\" && node build.js --simple",
"lint-check": "npx prettier --check .",
"lint": "npx prettier --write .",
"pre-commit": "lint-staged"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.5.3"
},
"lint-staged": {
"*.{js,json,md,yml,yaml,html,css}": [
"prettier --write"
]
}
}