{ "name": "tabs", "version": "0.9.1", "description": "Persistent and separate browser tabs in one window.", "author": { "name": "Alice Gaudon", "email": "alice@gaudon.pro" }, "homepage": "https://gitlab.com/ArisuOngaku/tabs", "license": "GPL-3.0-only", "main": "build/main.js", "scripts": { "clean": "(! test -d build || rm -r build) && (! test -d resources || rm -r resources)", "compile": "yarn clean && tsc -p tsconfig.backend.json && webpack --mode production", "compile-dev": "yarn clean && tsc -p tsconfig.backend.json && webpack --mode development", "start": "yarn compile && electron .", "dev": "yarn compile-dev && electron . --dev", "build": "yarn compile && electron-builder -wl", "release": "yarn compile && GH_TOKEN=$(cat GH_TOKEN) electron-builder -wlp always" }, "dependencies": { "appdata-path": "^1.0.0", "ejs": "^3.0.1", "electron-updater": "^4.2.4", "esm": "^3.2.25", "single-instance": "^0.0.1" }, "devDependencies": { "@babel/core": "^7.9.6", "@babel/preset-env": "^7.9.6", "@fortawesome/fontawesome-free": "^5.13.0", "@types/node": "^12.12.41", "babel-loader": "^8.1.0", "copy-webpack-plugin": "^6.0.1", "css-loader": "^3.5.3", "electron": "^9.0.0", "electron-builder": "^22.4.0", "file-loader": "^6.0.0", "imagemin": "^7.0.1", "imagemin-gifsicle": "^7.0.0", "imagemin-mozjpeg": "^8.0.0", "imagemin-pngquant": "^8.0.0", "imagemin-svgo": "^8.0.0", "img-loader": "^3.0.1", "mini-css-extract-plugin": "^0.9.0", "node-sass": "^4.14.1", "sass-loader": "^8.0.2", "ts-loader": "^7.0.4", "typescript": "^3.9.3", "uglifyjs-webpack-plugin": "^2.2.0", "webpack": "^4.43.0", "webpack-cli": "^3.3.11" }, "build": { "appId": "tabs-app", "files": [ "resources/**/*", "build/**/*" ], "linux": { "target": "AppImage", "icon": "resources/logo.png", "category": "Utility", "executableName": "tabs", "desktop": { "StartupWMClass": "Tabs", "MimeType": "x-scheme-handler/tabs" }, "publish": [ { "provider": "github", "owner": "ArisuOngaku", "repo": "tabs" } ] }, "win": { "target": "nsis", "icon": "resources/logo.png", "publisherName": "Alice Gaudon", "verifyUpdateCodeSignature": "true", "publish": [ { "provider": "github", "owner": "ArisuOngaku", "repo": "tabs" } ] }, "mac": { "target": "default", "icon": "resources/logo.png", "category": "public.app-category.utilities", "publish": [ { "provider": "github", "owner": "ArisuOngaku", "repo": "tabs" } ] }, "electronVersion": "9.0.0" } }