2019-08-31 16:14:06 +02:00
|
|
|
{
|
2020-01-03 13:01:50 +01:00
|
|
|
"name": "tabs",
|
2022-03-17 13:14:59 +01:00
|
|
|
"version": "1.3.1",
|
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"
|
|
|
|
},
|
2021-02-06 10:30:46 +01:00
|
|
|
"homepage": "https://eternae.ink/ashpie/tabs",
|
2020-05-20 17:46:41 +02:00
|
|
|
"license": "GPL-3.0-only",
|
2020-05-21 07:38:44 +02:00
|
|
|
"main": "build/main.js",
|
2019-08-31 16:14:06 +02:00
|
|
|
"scripts": {
|
2020-05-25 06:16:28 +02:00
|
|
|
"clean": "(! test -d build || rm -r build) && (! test -d resources || rm -r resources)",
|
2020-09-29 20:38:43 +02:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
2020-09-29 20:43:41 +02:00
|
|
|
"compile": "yarn compile-common && webpack --mode production",
|
|
|
|
"compile-dev": "yarn compile-common && webpack --mode development",
|
|
|
|
"compile-common": "yarn clean && tsc -p tsconfig.backend.json && tsc -p tsconfig.frontend.json && rm -r resources/js/src && mv resources/js/frontend/ts/* resources/js/ && rm -r resources/js/frontend",
|
2020-05-21 07:38:44 +02:00
|
|
|
"start": "yarn compile && electron .",
|
2020-05-26 09:37:44 +02:00
|
|
|
"dev": "yarn compile-dev && concurrently -k -n \"Electron,Webpack,TSC-Frontend\" -p \"[{name}]\" -c \"green,yellow\" \"electron . --dev\" \"webpack --mode development --watch\" \"tsc -p tsconfig.frontend.json --watch\"",
|
2020-05-21 07:38:44 +02:00
|
|
|
"build": "yarn compile && electron-builder -wl",
|
2020-09-29 20:38:43 +02:00
|
|
|
"release": "yarn lint && yarn compile && GH_TOKEN=$(cat GH_TOKEN) electron-builder -wlp always"
|
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-25 06:16:28 +02:00
|
|
|
"@babel/core": "^7.9.6",
|
|
|
|
"@babel/preset-env": "^7.9.6",
|
2022-03-17 13:06:17 +01:00
|
|
|
"@fortawesome/fontawesome-free": "^6.1.0",
|
2022-03-17 12:36:40 +01:00
|
|
|
"@types/node": "^14.6.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
|
|
"@typescript-eslint/parser": "^5.15.0",
|
2020-05-25 06:16:28 +02:00
|
|
|
"babel-loader": "^8.1.0",
|
2022-03-17 12:36:40 +01:00
|
|
|
"concurrently": "^7.0.0",
|
|
|
|
"copy-webpack-plugin": "^10.2.4",
|
2021-09-22 14:59:27 +02:00
|
|
|
"css-loader": "^6.3.0",
|
2022-03-17 12:36:40 +01:00
|
|
|
"electron": "^17.1.2",
|
2021-05-25 11:22:46 +02:00
|
|
|
"electron-builder": "^22.11.5",
|
2022-03-17 12:36:40 +01:00
|
|
|
"eslint": "^8.11.0",
|
|
|
|
"image-minimizer-webpack-plugin": "^3.2.3",
|
|
|
|
"imagemin": "^8.0.1",
|
2020-05-25 06:16:28 +02:00
|
|
|
"imagemin-gifsicle": "^7.0.0",
|
2022-03-17 12:36:40 +01:00
|
|
|
"imagemin-mozjpeg": "^10.0.0",
|
2021-07-11 12:02:34 +02:00
|
|
|
"imagemin-pngquant": "^9.0.2",
|
2022-03-17 12:36:40 +01:00
|
|
|
"imagemin-svgo": "^10.0.1",
|
2021-07-11 11:46:18 +02:00
|
|
|
"mini-css-extract-plugin": "^2.1.0",
|
2021-05-11 10:10:47 +02:00
|
|
|
"sass": "^1.32.12",
|
2021-07-11 11:46:18 +02:00
|
|
|
"sass-loader": "^12.1.0",
|
2021-07-11 12:02:34 +02:00
|
|
|
"svgo": "^2.3.1",
|
2021-05-11 10:13:24 +02:00
|
|
|
"ts-loader": "^9.1.2",
|
2020-08-22 09:29:53 +02:00
|
|
|
"typescript": "^4.0.2",
|
2020-10-25 13:52:12 +01:00
|
|
|
"webpack": "^5.2.0",
|
|
|
|
"webpack-cli": "^4.1.0"
|
2020-01-03 13:01:50 +01:00
|
|
|
},
|
|
|
|
"build": {
|
2020-01-10 15:01:42 +01:00
|
|
|
"appId": "tabs-app",
|
2020-05-21 07:38:44 +02:00
|
|
|
"files": [
|
|
|
|
"resources/**/*",
|
|
|
|
"build/**/*"
|
|
|
|
],
|
2020-11-16 16:15:58 +01:00
|
|
|
"publish": [
|
|
|
|
{
|
|
|
|
"provider": "generic",
|
2021-03-06 18:24:21 +01:00
|
|
|
"url": "https://update.eternae.ink/ashpie/tabs"
|
2020-11-16 16:15:58 +01:00
|
|
|
}
|
|
|
|
],
|
2020-01-03 13:01:50 +01:00
|
|
|
"linux": {
|
2020-05-19 10:51:52 +02:00
|
|
|
"target": "AppImage",
|
2021-07-11 12:02:46 +02:00
|
|
|
"icon": "frontend/images/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-11-16 16:15:58 +01:00
|
|
|
}
|
2020-01-03 13:01:50 +01:00
|
|
|
},
|
2020-03-05 22:25:43 +01:00
|
|
|
"win": {
|
|
|
|
"target": "nsis",
|
2021-07-11 12:02:46 +02:00
|
|
|
"icon": "frontend/images/logo.png",
|
2020-03-05 22:25:43 +01:00
|
|
|
"publisherName": "Alice Gaudon",
|
2020-11-16 16:15:58 +01:00
|
|
|
"verifyUpdateCodeSignature": "false"
|
2020-03-05 23:17:32 +01:00
|
|
|
},
|
|
|
|
"mac": {
|
|
|
|
"target": "default",
|
2021-07-11 12:02:46 +02:00
|
|
|
"icon": "frontend/images/logo.png",
|
2020-11-16 16:15:58 +01:00
|
|
|
"category": "public.app-category.utilities"
|
2020-03-05 22:25:43 +01:00
|
|
|
},
|
2021-09-22 14:59:27 +02:00
|
|
|
"electronVersion": "15.0.0"
|
2019-08-31 16:14:06 +02:00
|
|
|
}
|
|
|
|
}
|