-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "iris-electron",
"version": "2.3.3",
"main": "index.js",
"repository": "https://github.com/irislib/iris-electron",
"author": "Martti Malmi <sirius@iki.fi>",
"license": "MIT",
"description": "Social networking freedom",
"dependencies": {
"bonjour": "mmalmi/bonjour",
"electron-updater": "^5.0.5",
"gun": "^0.2020.1237",
"nat-pmp": "^1.0.0",
"public-ip": "^6.0.0"
},
"devDependencies": {
"dotenv": "^16.0.1",
"electron": "^19.0.5",
"electron-builder": "^22.11.7",
"electron-notarize": "^1.2.1"
},
"build": {
"productName": "Iris",
"appId": "to.iris.electron",
"afterSign": "scripts/notarize.js",
"files": "!.env",
"mac": {
"category": "public.app-category.social-networking"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"publish": {
"provider": "github"
}
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "DEV=true electron .",
"pack": "electron-builder --dir",
"build": "electron-builder",
"release": "electron-builder"
}
}