diff --git a/package.json b/package.json index 111417d..abf9479 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "MQ(TT)-Explorer", - "version": "0.0.1", + "name": "MQTT-Explorer", + "version": "0.0.2", "description": "Explore your message queues", "main": "electron.js", "scripts": { @@ -20,7 +20,7 @@ "appId": "mqtt-explorer", "nodeGypRebuild": false, "mac": { - "category": "de.t7n.apps.mq-explorer", + "category": "de.t7n.apps.mqtt-explorer", "publish": [ "github" ] @@ -59,13 +59,9 @@ "tslint-strict-null-checks": "^1.0.1" }, "dependencies": { - "@types/electron": "^1.6.10", - "@types/socket.io": "^2.1.2", "electron-log": "^2.2.17", "electron-updater": "^4.0.6", "mqtt": "^2.18.8", - "react-ace": "^6.3.2", - "sha1": "^1.1.1", - "socket.io": "^2.2.0" + "sha1": "^1.1.1" } } diff --git a/package.ts b/package.ts index b54fe99..de7f3d4 100644 --- a/package.ts +++ b/package.ts @@ -5,9 +5,9 @@ const linux: builder.CliOptions = { ia32: true, armv7l: true, arm64: true, - linux: ['snap', 'AppImage', 'deb', 'pacman'], + linux: ['AppImage', 'deb', 'snap'], projectDir: './build/clean', - publish: 'always', + publish: 'onTag', } const win: builder.CliOptions = { @@ -15,9 +15,9 @@ const win: builder.CliOptions = { ia32: true, armv7l: false, arm64: false, - win: ['portable'], + win: ['portable', 'nsis'], projectDir: './build/clean', - publish: 'always', + publish: 'onTag', } const mac: builder.CliOptions = { @@ -27,7 +27,7 @@ const mac: builder.CliOptions = { arm64: false, mac: ['dmg'], projectDir: './build/clean', - publish: 'always', + publish: 'onTag', } async function buildAll() {