2019-08-31 16:14:06 +02:00
|
|
|
{
|
2020-01-03 13:01:50 +01:00
|
|
|
"name": "tabs",
|
2020-05-19 10:56:02 +02:00
|
|
|
"version": "0.7.2",
|
2020-03-05 23:16:57 +01:00
|
|
|
"description": "Persistent and separate browser tabs in one window.",
|
2020-01-03 13:01:50 +01:00
|
|
|
"author": {
|
|
|
|
"name": "Alice Gaudon",
|
|
|
|
"email": "alice@gaudon.pro"
|
|
|
|
},
|
|
|
|
"homepage": "https://gitlab.com/ArisuOngaku/tabs",
|
|
|
|
"license": "MIT",
|
2020-01-03 15:01:15 +01:00
|
|
|
"main": "tabs.js",
|
2019-08-31 16:14:06 +02:00
|
|
|
"scripts": {
|
2019-10-13 22:59:28 +02:00
|
|
|
"start": "electron .",
|
2020-01-03 13:01:50 +01:00
|
|
|
"dev": "electron . --dev",
|
|
|
|
"build": "electron-builder",
|
|
|
|
"build-arch": "electron-builder --linux dir",
|
2020-04-18 15:14:13 +02:00
|
|
|
"release": "GH_TOKEN=$(cat GH_TOKEN) electron-builder -wlp always",
|
2020-01-03 13:01:50 +01:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
2019-08-31 16:14:06 +02:00
|
|
|
},
|
2020-01-03 15:01:15 +01:00
|
|
|
"dependencies": {
|
2020-05-19 10:52:39 +02:00
|
|
|
"appdata-path": "^1.0.0",
|
2020-01-03 15:01:15 +01:00
|
|
|
"ejs": "^3.0.1",
|
2020-03-05 22:28:15 +01:00
|
|
|
"electron-updater": "^4.2.4",
|
2020-01-03 15:01:15 +01:00
|
|
|
"esm": "^3.2.25",
|
|
|
|
"single-instance": "^0.0.1"
|
|
|
|
},
|
2019-08-31 16:14:06 +02:00
|
|
|
"devDependencies": {
|
2020-05-19 07:14:02 +02:00
|
|
|
"electron": "^9.0.0",
|
2020-03-05 22:25:43 +01:00
|
|
|
"electron-builder": "^22.4.0"
|
2020-01-03 13:01:50 +01:00
|
|
|
},
|
|
|
|
"build": {
|
2020-01-10 15:01:42 +01:00
|
|
|
"appId": "tabs-app",
|
2020-01-03 13:01:50 +01:00
|
|
|
"linux": {
|
2020-05-19 10:51:52 +02:00
|
|
|
"target": "AppImage",
|
2020-03-05 23:17:32 +01:00
|
|
|
"icon": "resources/logo.png",
|
2020-01-03 13:01:50 +01:00
|
|
|
"category": "Utility",
|
2020-03-05 23:17:32 +01:00
|
|
|
"executableName": "tabs",
|
2020-01-03 13:01:50 +01:00
|
|
|
"desktop": {
|
|
|
|
"StartupWMClass": "Tabs",
|
|
|
|
"MimeType": "x-scheme-handler/tabs"
|
2020-03-05 23:17:32 +01:00
|
|
|
},
|
|
|
|
"publish": [
|
|
|
|
{
|
|
|
|
"provider": "github",
|
|
|
|
"owner": "ArisuOngaku",
|
|
|
|
"repo": "tabs"
|
|
|
|
}
|
|
|
|
]
|
2020-01-03 13:01:50 +01:00
|
|
|
},
|
2020-03-05 22:25:43 +01:00
|
|
|
"win": {
|
|
|
|
"target": "nsis",
|
|
|
|
"icon": "resources/logo.png",
|
|
|
|
"publisherName": "Alice Gaudon",
|
|
|
|
"verifyUpdateCodeSignature": "true",
|
2020-03-05 23:17:32 +01:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
]
|
2020-03-05 22:25:43 +01:00
|
|
|
},
|
2020-05-19 07:14:02 +02:00
|
|
|
"electronVersion": "9.0.0"
|
2019-08-31 16:14:06 +02:00
|
|
|
}
|
|
|
|
}
|