-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 1.78 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
{
"name": "peersky-browser",
"version": "1.0.0",
"private": true,
"description": "A minimal p2p web browser.",
"keywords": [
"peersky",
"ipfs",
"browser",
"dweb"
],
"license": "MIT",
"author": "Akhilesh Thite <akhileshthite@hotmail.com> (https://akhilesh.art/)",
"main": "src/main.js",
"repository": "https://github.com/p2plabsxyz/peersky-browser",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"electron-rebuild": "electron-rebuild",
"build": "electron-builder build --publish never",
"build-all": "electron-builder build -mwl"
},
"build": {
"npmRebuild": false,
"asar": false,
"appId": "peersky.p2plabs.xyz",
"productName": "Peersky Browser",
"directories": {
"output": "build"
},
"files": [
"node_modules/**/*",
"package.json",
"public/*",
"src/**/*",
"src/*"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"icon": "./public/icon.png"
},
"win": {
"target": "nsis",
"icon": "./public/icon.png"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "./public/icon.png"
},
"protocols": [
{
"name": "ipfs",
"schemes": [
"ipfs",
"ipns",
"ipld"
],
"role": "Viewer"
}
],
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"dependencies": {
"ipfs": "^0.66.1",
"jquery": "^3.7.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"electron": "^20.3.12",
"electron-builder": "^23.6.0",
"electron-rebuild": "^3.2.9"
}
}