-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 874 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "mobtexting",
"version": "1.0.2",
"productName": "mobtexting app",
"main": "main.js",
"description": "Application for send message",
"devDependencies": {
"electron": "^1.7.10",
"electron-packager": "^10.1.1",
"electron-winstaller": "^2.6.3"
},
"scripts": {
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=release-builds",
"package-win": "electron-packager . mobtexting --overwrite --asar=true --platform=win32 --arch=ia32 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"mobtexting app\"",
"package-linux": "electron-packager . mobtexting --overwrite --asar=true --platform=linux --arch=x64 --prune=true --out=release-builds"
},
"dependencies": {
"electron-settings": "^3.1.4"
}
}