tabs/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-31 16:14:06 +02:00
{
"name": "tabs",
2020-03-05 22:28:26 +01:00
"version": "0.5.2",
"description": "Persistent and separate browser tabs in one window",
"author": {
"name": "Alice Gaudon",
"email": "alice@gaudon.pro"
},
"homepage": "https://gitlab.com/ArisuOngaku/tabs",
"license": "MIT",
"main": "tabs.js",
2019-08-31 16:14:06 +02:00
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build-arch": "electron-builder --linux dir",
"test": "echo \"Error: no test specified\" && exit 1"
2019-08-31 16:14:06 +02:00
},
"dependencies": {
"ejs": "^3.0.1",
2020-03-05 22:28:15 +01:00
"electron-updater": "^4.2.4",
"esm": "^3.2.25",
"single-instance": "^0.0.1"
},
2019-08-31 16:14:06 +02:00
"devDependencies": {
"electron": "^8.0.3",
"electron-builder": "^22.4.0"
},
"build": {
2020-01-10 15:01:42 +01:00
"appId": "tabs-app",
"linux": {
"target": [
"dir"
],
"executableName": "tabs",
"category": "Utility",
"desktop": {
"StartupWMClass": "Tabs",
"MimeType": "x-scheme-handler/tabs"
}
},
"win": {
"target": "nsis",
"icon": "resources/logo.png",
"publisherName": "Alice Gaudon",
"verifyUpdateCodeSignature": "true",
"publish": ["github"]
},
"electronVersion": "8.0.3"
2019-08-31 16:14:06 +02:00
}
}