-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
62
{
"name": "Chameleon",
"description": "Chameleon is a browser designed to provide you with a seamless browsing experience by blending in with whatever site you are visiting.",
"version": "1.0.0",
"license": "MIT",
"author": "Kelvin Zhang <[email protected]>",
"main": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"pack": "electron-builder --dir",
"build-mac": "electron-builder -m",
"build-win": "electron-builder -w",
"build-linux": "electron-builder -l",
"build": "electron-builder -mwl"
},
"build": {
"appId": "com.polunom.chameleon",
"mac": {
"category": "public.app-category.productivity",
"icon": "img/icon.icns",
"type": "distribution"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "img/icon.ico"
}
},
"devDependencies": {
"@getstation/repackage-chrome-extension-for-electron": "^0.1.1",
"electron": "^8.2.2",
"electron-builder": "^22.2.0",
"electron-rebuild": "^1.8.4",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.3.1",
"cross-fetch": "^3.0.4",
"dexie": "^2.0.4",
"electron-config": "^2.0.0",
"electron-dl": "^1.14.0",
"electron-in-page-search": "^1.3.2",
"electron-is-dev": "^1.2.0",
"electron-store": "^5.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jquery": "^3.4.1",
"node-vibrant": "^3.1.5",
"unused-filename": "^1.0.0"
}
}