-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.02 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "nimvelo-dialer",
"version": "1.0.9",
"description": "Nimvelo Dialer and Phonebook",
"main": "main.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^34.2.0",
"electron-builder": "^25.1.8"
},
"scripts": {
"start": "electron .",
"build": "electron-builder",
"package": "electron-builder --dir",
"publish": "electron-builder --publish always"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"atmosphere": "^0.0.1",
"axios": "^1.7.9",
"electron-context-menu": "^4.1.0",
"electron-store": "^10.0.1",
"electron-updater": "^6.3.9",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.1"
},
"build": {
"appId": "com.speakdigital.nimvelodialer",
"productName": "NimveloDialer",
"copyright": "Copyright © 2025",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"streamHandler.js",
"renderer/",
"node_modules/",
"assets/",
"package.json"
],
"extraResources": [
{
"from": "assets/",
"to": "assets/"
}
],
"protocols": [
{
"name": "Telephone",
"schemes": [
"tel"
]
}
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icon.ico",
"artifactName": "NimveloDialer-Setup-${version}.exe",
"publisherName": "Speak Digital Ltd"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"runAfterFinish": true
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"artifactName": "NimveloDialer-${version}.${ext}"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/",
"artifactName": "NimveloDialer-${version}.${ext}"
}
},
"publish": [
{
"provider": "github",
"owner": "speakdigital",
"repo": "Nimvelo-Dialer"
}
]
}