-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "google-meet-pip",
"version": "1.2.3",
"description": "Display a Google Meet video in a Picture-in-Picture window",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"clean": "rm -rf dist",
"watch": "webpack --watch",
"prettier": "prettier src/** *.md *.json --write",
"zip": "zip -r google-meet-pip.zip manifest.json dist assets/icon-*"
},
"keywords": [],
"author": "Arnelle Balane <[email protected]> (https://arnellebalane.com/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"style-loader": "^3.3.3",
"vue-loader": "16.0.0-beta.8",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vue": "^3.3.4"
},
"lint-staged": {
"src/**/*.{html,css,js,vue}": "prettier --write"
}
}