-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
161 lines (161 loc) · 3.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "elzabrowser",
"description": "Elza incognito web browser",
"version": "0.6.2",
"author": {
"name": "ElzaBrowserAuthors",
"email": "[email protected]",
"url": "https://elzabrowser.com/"
},
"homepage": "./",
"main": "public/electron.js",
"productName": "Elza Browser",
"repository": {
"type": "git",
"url": "https://github.com/elzabrowser/elza.git"
},
"build": {
"appId": "com.elza.elzabrowser",
"files": [
"build/**/*",
"node_modules/**/*"
],
"publish": [
"github"
],
"directories": {
"buildResources": "build"
},
"artifactName": "ElzaBrowser.Setup.${version}.${ext}",
"linux": {
"icon": "build",
"category": "Network",
"synopsis": "Elza incognito web browser",
"target": [
"deb",
"appImage"
],
"desktop": {
"Name": "Elza",
"Comment": "Elza incognito web browser"
},
"extraFiles": [
{
"from": "resources/lin/tor",
"to": "resources/lin/tor",
"filter": [
"**/*"
]
},
{
"from": "/usr/lib/x86_64-linux-gnu/libevent-2.1.so.7",
"to": "usr/lib/libevent-2.1.so.7"
}
]
},
"mac": {
"extraFiles": [
{
"from": "resources/mac/tor",
"to": "resources/mac/tor",
"filter": [
"**/*"
]
}
]
},
"win": {
"publisherName": "ExpertEvidence.org",
"target": [
"nsis",
"nsis-web",
"appx"
],
"verifyUpdateCodeSignature": false,
"extraFiles": [
{
"from": "resources/win/Tor",
"to": "resources/win/Tor",
"filter": [
"**/*"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true
},
"nsisWeb": {
"artifactName": "ElzaBrowser.WebSetup.${version}.${ext}"
},
"deb": {
"artifactName": "ElzaBrowser.Setup.${version}.Ubuntu20.04.${ext}",
"icon": "public/icon32x32.png",
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"libevent-dev"
]
},
"appImage": {
"artifactName": "ElzaBrowser.Setup.AppImage"
}
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.23.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"bootstrap": "^4.6.1",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.4",
"electron-context-menu": "^3.1.1",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.4.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.9",
"font-awesome": "^4.7.0",
"get-json": "^1.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"request": "^2.88.2",
"semver": "^7.3.5",
"unused-filename": "^3.0.1"
},
"devDependencies": {
"concurrently": "^6.4.0",
"electron": "15.3.1",
"electron-builder": "^22.13.1",
"electron-packager": "^15.4.0",
"wait-on": "^6.0.0"
},
"scripts": {
"electron-dev": "cross-env BROWSER=none concurrently \"react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"build-win": "cross-env CI= react-scripts build && electron-builder --win --publish never",
"build-linux": "cross-env CI= react-scripts build && electron-builder --linux --publish never",
"build-mac": "cross-env CI= react-scripts build && electron-builder --mac --publish never"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}