-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "digiid-desktop",
"version": "0.5.0",
"description": "A Digi-ID implementation for Desktop Operating Systems",
"main": "src/index.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder build --dir",
"dist": "electron-builder build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RenzoDD/digiid-desktop.git"
},
"author": {
"name": "Renzo Diaz",
"email": "renzo.diaz@remadi.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/RenzoDD/digiid-desktop/issues"
},
"homepage": "https://github.com/RenzoDD/digiid-desktop#readme",
"dependencies": {
"@ledgerhq/hw-app-btc": "^6.24.1",
"@ledgerhq/hw-transport-node-hid": "^6.24.1",
"digibyte-js": "^1.2.4"
},
"devDependencies": {
"electron": "^17.1.0",
"electron-builder": "^22.14.13"
},
"build": {
"productName": "Digi-ID",
"appId": "org.digibyte.digiid",
"nsis": {
"artifactName": "Digi-ID Setup ${version}.${ext}",
"uninstallDisplayName": "Digi-ID"
},
"asar": true,
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
],
"icon": "src/views/img/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Authentication",
"icon": "src/views/img/icon.icns"
},
"win": {
"target": "NSIS",
"icon": "src/views/img/icon.ico"
}
}
}