-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.92 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.92 KB
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
{
"name": "SmartProxy",
"description": "SmartProxy is a browser extension that will automatically enable/disable proxy for the sites you visit, based on customizable patterns.",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/pako": "^2.0.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"decompress": "^4.2.1",
"eslint": "^10.1.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-webextension-mock": "^4.1.1",
"terser-webpack-plugin": "^5.4.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"tsc": "^2.0.4",
"typescript": "^6.0.2",
"web-ext-types": "^3.2.1",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./src",
"build": "webpack --env browser=chrome",
"build-ff": "webpack --env browser=firefox",
"build-ff:watch": "webpack --watch --env browser=firefox --env dev=true",
"build-ff-unlisted": "webpack --env browser=firefox-unlisted",
"build-ff-android": "webpack --env browser=firefox-android",
"build-ch": "webpack --env browser=chrome --env service_worker=true",
"build-ch:watch": "webpack --watch --env browser=chrome --env service_worker=true --env dev=true",
"build-ch-mv2": "webpack --env browser=chrome-mv2",
"build-ch-mv2:watch": "webpack --watch --env browser=chrome-mv2 --env dev=true",
"build-ed": "webpack --env browser=edge",
"build-ed:watch": "webpack --watch --env browser=edge --env dev=true",
"build-op": "webpack --env browser=opera",
"build-op:watch": "webpack --watch --env browser=opera --env dev=true",
"build-th": "webpack --env browser=thunderbird",
"build-th:watch": "webpack --watch --env browser=thunderbird --env dev=true"
},
"license": "GPL-3.0",
"dependencies": {
"pako": "^2.1.0",
"webdav": "^5.9.0"
}
}