1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 07:30:19 +01:00
upscayl/package.json

81 lines
1.8 KiB
JSON
Raw Normal View History

2022-08-15 06:53:14 +02:00
{
2022-08-15 09:06:31 +02:00
"name": "upscayl",
2022-08-15 06:53:14 +02:00
"private": true,
2022-08-21 17:11:11 +02:00
"version": "1.0.0",
2022-08-15 09:06:31 +02:00
"productName": "Upscayl",
2022-08-21 17:11:11 +02:00
"author": "TGS963 <nayam@nay.am>",
2022-08-15 06:53:14 +02:00
"email": "nay@am.com",
"license": "GPLv2",
2022-08-15 09:06:31 +02:00
"description": "Upscayl - Linux first image upscale app",
2022-08-15 06:53:14 +02:00
"keywords": [
"Linux",
"Gnome",
"Desktop",
"Shortcut"
],
"main": "main/index.js",
"scripts": {
"clean": "rimraf dist renderer/.next renderer/out",
"start": "electron .",
"build": "next build renderer && next export renderer",
"pack-app": "npm run build && electron-builder --dir",
2022-08-21 17:11:11 +02:00
"dist": "npm run build && electron-builder -l --publish always"
2022-08-15 06:53:14 +02:00
},
"build": {
2022-08-21 17:11:11 +02:00
"productName": "Upscayl",
"appId": "com.tgs963.upscayl",
2022-08-15 06:53:14 +02:00
"asar": true,
2022-08-16 04:17:27 +02:00
"extraFiles": [
{
"from": "resources/linux/bin",
"to": "Resources/bin",
"filter": [
"**/*"
]
}
],
2022-08-15 06:53:14 +02:00
"linux": {
2022-08-21 17:11:11 +02:00
"publish":[
"github"
],
2022-08-15 06:53:14 +02:00
"target": [
"AppImage",
"deb",
"rpm",
"flatpak",
"snap"
]
},
"snap": {
"confinement": "classic"
},
"files": [
"main",
"renderer/out"
]
},
"devDependencies": {
2022-08-15 09:06:31 +02:00
"autoprefixer": "^10.4.8",
"electron": "^20.0.2",
"electron-builder": "^23.3.3",
"next": "^12.2.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
2022-08-15 06:53:14 +02:00
"react": "^17.0.2",
"react-dom": "^17.0.2",
2022-08-15 09:06:31 +02:00
"tailwindcss": "^3.1.8"
2022-08-15 06:53:14 +02:00
},
"dependencies": {
2022-08-15 09:06:31 +02:00
"electron-is-dev": "^2.0.0",
2022-08-16 04:17:27 +02:00
"electron-is-packaged": "^1.0.2",
"electron-next": "^3.1.5",
2022-08-18 11:53:23 +02:00
"electron-root-path": "^1.0.16",
2022-08-21 17:11:11 +02:00
"electron-updater": "^5.2.1",
2022-08-18 11:53:23 +02:00
"image-size": "^1.0.2",
"react-compare-slider": "^2.2.0",
"sharp": "^0.30.7",
"tailwind-scrollbar": "^1.3.1"
2022-08-15 06:53:14 +02:00
}
}