-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·61 lines (61 loc) · 2.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ping-blocker",
"version": "2.0.0",
"author": "Armin Sebastian",
"license": "GPL-3.0-only",
"homepage": "https://github.com/dessant/ping-blocker",
"repository": {
"url": "https://github.com/dessant/ping-blocker.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/dessant/ping-blocker/issues"
},
"scripts": {
"_build": "cross-env NODE_ENV=development gulp build",
"build:chrome": "cross-env TARGET_ENV=chrome npm run _build",
"build:edge": "cross-env TARGET_ENV=edge npm run _build",
"build:firefox": "cross-env TARGET_ENV=firefox npm run _build",
"_build:prod": "cross-env NODE_ENV=production gulp build",
"build:prod:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod",
"build:prod:edge": "cross-env TARGET_ENV=edge npm run _build:prod",
"build:prod:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod",
"_build:prod:zip": "npm run _build:prod && gulp zip",
"build:prod:zip:chrome": "cross-env TARGET_ENV=chrome npm run _build:prod:zip",
"build:prod:zip:edge": "cross-env TARGET_ENV=edge npm run _build:prod:zip",
"build:prod:zip:firefox": "cross-env TARGET_ENV=firefox npm run _build:prod:zip",
"start:chrome": "web-ext run -s dist/chrome -t chromium",
"start:firefox": "web-ext run -s dist/firefox -t firefox-desktop",
"inspect": "cross-env NODE_ENV=production gulp inspect",
"update": "ncu --dep prod,dev,peer --filterVersion '^*' --upgrade",
"release": "commit-and-tag-version",
"push": "git push --follow-tags origin main"
},
"dependencies": {
"core-js": "^3.37.1",
"webextension-polyfill": "^0.12.0",
"wesa": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"babel-loader": "^9.1.3",
"commit-and-tag-version": "^12.4.1",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "7.1.0",
"gulp-jsonmin": "^1.2.0",
"gulp-merge-json": "^2.2.1",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5",
"sharp": "^0.33.4",
"web-ext": "^8.0.0",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"private": true
}