diff options
author | 0neGal <mail@0negal.com> | 2022-01-02 00:22:28 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-02 00:22:28 +0100 |
commit | 80eeab10e81a32c00c24608be83e7ea75ff9accf (patch) | |
tree | c12fe0163c16dead879e51f564f870fe8a7b980e /package.json | |
parent | 67b32b527aec8d36a4b6cca14677febc46f0e26d (diff) | |
parent | 1598d8b3510580cd886c884b80a69c7b2bcfa422 (diff) | |
download | Viper-80eeab10e81a32c00c24608be83e7ea75ff9accf.tar.gz Viper-80eeab10e81a32c00c24608be83e7ea75ff9accf.zip |
Merge branch 'main' of 0neGal/viper into mod-support
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/package.json b/package.json index ca02932..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": { @@ -13,25 +13,43 @@ "installerIcon": "icon.ico", "uninstallerIcon": "icon.ico", "installerHeaderIcon": "icon.ico" + }, + "linux": { + "icon": "512x512.png", + "category": "Game", + "target": [ + "AppImage", + "tar.gz", + "deb", + "rpm" + ] } }, "scripts": { "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 --linux appimage" + + "build": "npx electron-builder --win nsis --win portable --linux", + "build:windows": "npx electron-builder --win nsis --win portable", + "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", + "author": "0neGal <mail@0negal.com>", "license": "GPL-3.0-or-later", "bugs": { "url": "https://github.com/0neGal/viper/issues" }, "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", |