From 73bedfcab105dfbfa8826b62f45d62dc60ee414c Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 2 Dec 2015 13:50:50 -0800 Subject: [PATCH] add the packager and a start command --- console/package.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/console/package.json b/console/package.json index e58d16ce4d..270c9d26de 100644 --- a/console/package.json +++ b/console/package.json @@ -8,11 +8,15 @@ "" ], "devDependencies": { + "electron-packager": "^5.1.1", "electron-prebuilt": "^0.35.0" }, "repository": { - "type": "git", - "url": "https://github.com/highfidelity/hifi.git" + "type": "git", + "url": "https://github.com/highfidelity/hifi.git" }, - "main": "main.js" + "main": "main.js", + "scripts": { + "start": "electron ." + } }