pointvec/desktop/package.json

26 lines
1.5 KiB
JSON
Raw Normal View History

2017-11-04 20:52:05 -04:00
{
"name": "Dotgrid",
"version": "0.1.0",
"main": "main.js",
"scripts": {
2018-01-08 02:53:54 -05:00
"start": "electron .",
2018-07-17 22:30:11 -04:00
"clean": "rm -r ~/Desktop/Dotgrid-darwin-x64/ ; rm -r ~/Desktop/Dotgrid-linux-x64/ ; rm -r ~/Desktop/Dotgrid-win32-x64/ ; rm -r ~/Desktop/Dotgrid-linux-armv7l/ ; echo 'cleaned build location'",
"build_osx": "electron-packager . Dotgrid --platform=darwin --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.icns ; echo 'Built for OSX'",
"build_linux": "electron-packager . Dotgrid --platform=linux --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.ico ; echo 'Built for LINUX'",
"build_win": "electron-packager . Dotgrid --platform=win32 --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.ico ; echo 'Built for WIN'",
2018-09-08 01:49:57 -04:00
"build": "npm run clean ; npm run build_osx ; npm run build_linux ; npm run build_win",
2018-07-17 22:30:11 -04:00
"push_osx": "~/butler push ~/Desktop/Dotgrid-darwin-x64/ hundredrabbits/dotgrid:osx-64",
"push_linux": "~/butler push ~/Desktop/Dotgrid-linux-x64/ hundredrabbits/dotgrid:linux-64",
"push_win": "~/butler push ~/Desktop/Dotgrid-win32-x64/ hundredrabbits/dotgrid:windows-64",
"push_theme": "~/butler push ~/Github/HundredRabbits/Themes/themes/ hundredrabbits/dotgrid:themes",
"push_status": "~/butler status hundredrabbits/dotgrid",
2018-09-08 01:49:57 -04:00
"push": "npm run build ; npm run push_theme ; npm run push_osx ; npm run push_linux ; npm run push_win ; npm run clean ; npm run push_status"
2017-11-04 20:52:05 -04:00
},
"devDependencies": {
2018-09-13 17:38:14 -04:00
"electron": "^1.8.8"
2017-11-04 20:52:05 -04:00
},
"dependencies": {
2018-09-13 17:38:14 -04:00
"electron-packager": "^12.1.1"
2017-11-04 20:52:05 -04:00
}
}