-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·33 lines (33 loc) · 964 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
{
"name": "@gordalina/gmail-unsubscribe",
"version": "0.1.1",
"description": "A chrome extension to unsubscribe emails in gmail",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gordalina/gmail-unsubscribe.git"
},
"scripts": {
"build": "NODE_ENV=production yarn webpack",
"package": "npm run build && npm run zip",
"postversion": "git push && git push --tags",
"prettier": "prettier --write .",
"start": "NODE_ENV=development yarn webpack --watch",
"zip": "zip -rjXFS gmail-unsubscribe.zip build"
},
"dependencies": {
"@types/chrome": "0.0.195"
},
"devDependencies": {
"@types/node": "^18.7.13",
"@types/webpack": "^5.28.0",
"copy-webpack-plugin": "^11.0.0",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.2.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}