SymphonyElectron/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2016-09-26 21:39:43 -05:00
{
"name": "Symphony",
2016-11-07 14:31:39 -06:00
"productName": "Symphony",
2017-02-06 18:25:03 -06:00
"version": "1.0.1",
2016-11-07 14:31:39 -06:00
"description": "Symphony desktop app",
"author": "Symphony",
2017-02-10 20:20:09 -06:00
"main": "js/main.js",
2016-09-26 21:39:43 -05:00
"scripts": {
2016-11-08 18:32:04 -06:00
"dev:mac": "ELECTRON_DEV=true npm run start",
"dev:win": "SET ELECTRON_DEV=true && npm run start",
2016-11-07 14:31:39 -06:00
"start": "electron .",
"dist-mac": "build --mac",
2016-11-08 18:32:04 -06:00
"dist-win": "build --win --x64",
"dist-win-x86": "build --win --ia32"
2016-11-07 14:31:39 -06:00
},
"build": {
"appId": "symphony-electron-desktop",
"mac": {
"target": "dmg",
"category": "public.app-category.business"
},
2017-02-13 18:31:42 -06:00
"dmg": {
"contents": [
{ "x": 140, "y": 184 },
{ "x": 412, "y": 184, "type": "link", "path": "/Applications" }
]
},
2016-11-07 14:31:39 -06:00
"win": {
"target": "squirrel"
}
2016-09-26 21:39:43 -05:00
},
"repository": {
"type": "git",
2016-11-07 14:31:39 -06:00
"url": "git+https://github.com/SymphonyOSF/SymphonyElectron.git"
2016-09-26 21:39:43 -05:00
},
"keywords": [
"Symphony",
2016-11-07 14:31:39 -06:00
"start"
2016-09-26 21:39:43 -05:00
],
2016-11-07 14:31:39 -06:00
"license": "tbd",
2016-09-26 21:39:43 -05:00
"bugs": {
2016-11-07 14:31:39 -06:00
"url": "https://support.symphony.com"
2016-09-26 21:39:43 -05:00
},
"homepage": "https://corporate.symphony.com",
"devDependencies": {
2017-02-06 18:25:03 -06:00
"electron": "1.5.1",
"electron-builder": "^12.3.1",
2017-02-06 19:36:49 -06:00
"electron-packager": "^8.5.1",
"electron-builder-squirrel-windows": "^12.3.0"
2016-11-07 14:31:39 -06:00
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
2016-09-26 21:39:43 -05:00
}
}