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 .",
|
|
|
|
"clean" : "rm -r ~/Desktop/Dotgrid-darwin-x64/ ; rm -r ~/Desktop/Dotgrid-linux-x64/ ; rm -r ~/Desktop/Dotgrid-win32-x64/ ; 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'",
|
|
|
|
"build" : "npm run clean ; npm run build_osx ; npm run build_linux ; npm run build_win",
|
|
|
|
"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_status" : "~/butler status hundredrabbits/dotgrid",
|
2018-01-08 17:10:01 -05:00
|
|
|
"theme" : "npm run theme_osx ; npm run theme_linux ; npm run theme_win",
|
|
|
|
"theme_osx" : "cp -R ~/Github/HundredRabbits/Themes/themes ~/Desktop/Dotgrid-darwin-x64/",
|
|
|
|
"theme_linux" : "cp -R ~/Github/HundredRabbits/Themes/themes ~/Desktop/Dotgrid-linux-x64/",
|
|
|
|
"theme_win" : "cp -R ~/Github/HundredRabbits/Themes/themes ~/Desktop/Dotgrid-win32-x64/",
|
2018-01-12 22:03:21 -05:00
|
|
|
"docs" : "electron . docs",
|
2018-01-08 17:10:01 -05:00
|
|
|
"push" : "npm run build ; npm run 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-01-08 02:53:54 -05:00
|
|
|
"electron": "^1.8.1"
|
2017-11-04 20:52:05 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"electron-packager": "^8.4.0"
|
|
|
|
}
|
|
|
|
}
|