This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
85 lines (85 loc) · 1.75 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
{
"name": "peacock",
"productName": "Peacock",
"version": "2.4.0-beta.4",
"description": "Open source experimental private-by-default web browser",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/peacockweb/peacock"
},
"keywords": [
"browser",
"web",
"security",
"privacy",
"internet",
"anonymity"
],
"build": {
"appId": "com.peacockweb.peacock",
"productName": "Peacock",
"win": {
"target": [
"nsis",
"zip"
],
"icon": "images/peacock.ico"
},
"mac": {
"category": "productivity",
"target": [
"dmg"
],
"icon": "images/peacock.png"
},
"linux": {
"category": "Network",
"target": [
"AppImage",
"deb"
],
"icon": "images/peacock.png"
},
"nsis": {
"oneClick": "false",
"allowToChangeInstallationDirectory": "true",
"perMachine": "true"
},
"fileAssociations": [
{
"name": "Peacock HTML Document",
"description": "Peacock",
"ext": "html",
"icon": "../images/peacock.ico"
},
{
"name": "Peacock WebP Image",
"description": "Peacock WebP Image",
"ext": "webp",
"icon": "../images/peacock.ico"
}
]
},
"scripts": {
"start": "electron .",
"build-linux": "electron-builder --linux --publish always",
"build-win": "electron-builder --win --publish always"
},
"author": "Spike Codes <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^10.0.0-beta.1",
"electron-builder": "^22.6.1"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.15.0",
"cross-fetch": "^3.0.4",
"electron-context-menu": "^2.0.1",
"electron-store": "^5.1.1",
"electron-updater": "^4.3.1",
"sortablejs": "^1.10.2",
"uuid": "^8.1.0",
"v8-compile-cache": "^2.1.0"
}
}