-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
31
32
33
34
35
36
37
{
"name": "google-meet-push-to-talk",
"version": "3.0.0",
"description": "Simple extension that allows you to mute and unmute yourself with the space bar instead of fumbling around trying to click the button.",
"scripts": {
"build": "webpack",
"build:dev": "NODE_ENV=development webpack",
"build:dev:watch": "NODE_ENV=development webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BashVideo/google-meet-push-to-talk.git"
},
"author": "Andrew Grim",
"license": "MIT",
"bugs": {
"url": "https://github.com/BashVideo/google-meet-push-to-talk/issues"
},
"homepage": "https://github.com/BashVideo/google-meet-push-to-talk#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.3",
"html-webpack-plugin": "^5.3.1",
"style-loader": "^2.0.0",
"webpack": "^5.27.0",
"webpack-cli": "^4.5.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"keycode": "^2.2.0",
"socket.io-client": "^4.0.0"
}
}