-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 593 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 593 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"release": "bestzip extension.zip dist manifest.json src/assets src/background.js src/constants.js src/translations.js src/popup.html src/popup.js src/offscreen.html src/offscreen.js src/modules/* tfjs/*",
"prepare": "husky"
},
"devDependencies": {
"bestzip": "^2.2.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"vite": "^4.4.9"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}