-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d40fdc5
commit 64f6597
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"name": "PiBakery", | ||
"displayName": "PiBakery", | ||
"version": "0.3.5", | ||
"version": "0.3.6", | ||
"description": "The blocks based, easy to use setup tool for Raspberry Pi", | ||
"main": "./main.js", | ||
"author": "David Ferguson <[email protected]>", | ||
"license": "GPL-3.0+", | ||
"scripts": { | ||
"setup": "npm install && if uname | grep Darwin; then mkdir -p '/Library/Application Support/PiBakery/os/'; fi", | ||
"start": "electron .", | ||
"build-mac": "find . -name .DS_Store -depth -exec rm {} \\; && npm dedupe && electron-packager ./ PiBakery --platform=darwin --arch=all --version=1.3.2 --overwrite --prune --app-version=0.3.5 --icon=./app/img/icon.icns", | ||
"build-win": "npm dedupe && electron-packager ./ PiBakery --platform=win32 --arch=ia32 --version=1.3.2 --overwrite --prune --app-version=0.3.5 --icon=./app/img/icon.ico", | ||
"build-linux": "find . -name .DS_Store -depth -exec rm {} \\; && npm dedupe && electron-packager ./ PiBakery --platform=linux --arch=all --version=1.3.2 --overwrite --prune --app-version=0.3.5 --icon=./app/img/icon.icns" | ||
"build-mac": "find . -name .DS_Store -depth -exec rm {} \\; && npm dedupe && electron-packager ./ PiBakery --platform=darwin --arch=all --version=1.3.2 --overwrite --prune --app-version=0.3.6 --icon=./app/img/icon.icns", | ||
"build-win": "npm dedupe && electron-packager ./ PiBakery --platform=win32 --arch=ia32 --version=1.3.2 --overwrite --prune --app-version=0.3.6 --icon=./app/img/icon.ico", | ||
"build-linux": "find . -name .DS_Store -depth -exec rm {} \\; && npm dedupe && electron-packager ./ PiBakery --platform=linux --arch=all --version=1.3.2 --overwrite --prune --app-version=0.3.6 --icon=./app/img/icon.icns" | ||
}, | ||
"optionalDependencies": { | ||
"elevator": "^1.0.0", | ||
|