-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
23 lines (23 loc) · 1.02 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
{
"name": "focused-youtube",
"version": "2.7.0",
"scripts": {
"build": "vite build --config vite.popup.config.js && vite build --config vite.background.config.js && vite build --config vite.welcome.config.js && vite build --config vite.content_script.config.js && rsync -av output_background_script/* dist && rsync -av output_popup/* dist && rsync -av output_welcome/* dist && rsync -av output_content_script/* dist && rm dist/index.html && rm -f dist.zip && zip -vr dist.zip dist",
"dev": "nodemon --ext js,vue,css,json,svg,png,html,ttf --watch 'src/**' --watch 'public/**' --exec 'npm run build'",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"dependencies": {
"vue": "^3.5.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.28.0",
"nodemon": "^3.1.4",
"sass": "^1.78.0",
"vite": "^5.4.14",
"vite-plugin-eslint": "^1.8.1"
}
}