tabs/package.json

95 lines
3.1 KiB
JSON
Raw Normal View History

2019-08-31 16:14:06 +02: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.",
"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": {
"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 .",
"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
},
"dependencies": {
"appdata-path": "^1.0.0",
"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": {
"@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",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-loader": "^8.1.0",
"concurrently": "^7.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.3.0",
"electron": "^17.1.2",
"electron-builder": "^22.11.5",
"eslint": "^8.11.0",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"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",
"svgo": "^2.3.1",
2021-05-11 10:13:24 +02:00
"ts-loader": "^9.1.2",
"typescript": "^4.0.2",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0"
},
"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
}
],
"linux": {
2020-05-19 10:51:52 +02:00
"target": "AppImage",
2021-07-11 12:02:46 +02:00
"icon": "frontend/images/logo.png",
"category": "Utility",
"executableName": "tabs",
"desktop": {
"StartupWMClass": "Tabs",
"MimeType": "x-scheme-handler/tabs"
2020-11-16 16:15:58 +01:00
}
},
"win": {
"target": "nsis",
2021-07-11 12:02:46 +02:00
"icon": "frontend/images/logo.png",
"publisherName": "Alice Gaudon",
2020-11-16 16:15:58 +01:00
"verifyUpdateCodeSignature": "false"
},
"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"
},
"electronVersion": "15.0.0"
2019-08-31 16:14:06 +02:00
}
}