diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/package.json b/package.json index 3dec425..449adb7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "viper", "productName": "Viper", - "version": "1.0.0", + "version": "0.9.0", "description": "Launcher+Updater for TF|2 Northstar", "main": "src/index.js", "build": { @@ -19,10 +19,9 @@ "category": "Game", "target": [ "AppImage", - "snap", + "tar.gz", "deb", - "rpm", - "tar.gz" + "rpm" ] } }, @@ -30,13 +29,18 @@ "start": "npx electron src/index.js", "debug": "npx electron src/index.js --debug", "man": "npx marked-man docs/viper.1.md > docs/viper.1", + "build": "npx electron-builder --win nsis --win portable --linux", "build:windows": "npx electron-builder --win nsis --win portable", - "build:linux": "npx electron-builder --linux" + "build:linux": "npx electron-builder --linux", + + "publish": "npx electron-builder --win nsis --win portable --linux -p always", + "publish:windows": "npx electron-builder --win nsis --win portable -p always", + "publish:linux": "npx electron-builder --linux -p always" }, "repository": { "type": "git", - "url": "git+https://github.com/0neGal/viper.git" + "url": "git+https://github.com/0neGal/viper" }, "author": "0neGal <mail@0negal.com>", "license": "GPL-3.0-or-later", @@ -45,6 +49,7 @@ }, "homepage": "https://github.com/0neGal/viper#readme", "dependencies": { + "electron-updater": "^4.6.1", "follow-redirects": "^1.14.6", "marked-man": "^0.7.0", "request": "^2.88.2", |