-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.34 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "elector",
"version": "2.1.1",
"description": "Tor browser built with Electron",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"electron",
"browser",
"tor",
"privacy",
"security"
],
"author": "James Campbell <james@jamescampbell.us>",
"contributors": [
"Paul Frazee <pfrazee@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"electron": "^35.7.5",
"electron-builder": "^25.1.8"
},
"dependencies": {
"@electron/remote": "^2.1.2"
},
"build": {
"appId": "com.elector.browser",
"productName": "Elector",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!node_modules",
"!dist",
"!.git"
],
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "assets/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network"
}
}
}