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-23 16:37:21 +02:00
|
|
|
"version": "1.1.1",
|
2022-08-15 09:06:31 +02:00
|
|
|
"productName": "Upscayl",
|
2022-08-24 06:50:30 +02:00
|
|
|
"homepage": "https://github.com/TGS963/upscayl",
|
2022-08-23 15:17:34 +02:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Nayam Amarshe",
|
|
|
|
"email": "nayam@amars.he",
|
|
|
|
"url": "https://github.com/NayamAmarshe"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "TGS963",
|
|
|
|
"email": "tgs@963.com",
|
|
|
|
"url": "https://github.com/TGS963"
|
|
|
|
}
|
|
|
|
],
|
2022-08-24 06:50:30 +02:00
|
|
|
"email": "simplelogin-newsletter.j1zez@aleeas.com",
|
|
|
|
"license": "AGPL-3.0",
|
2022-08-23 15:17:34 +02:00
|
|
|
"description": "Upscayl - Free and Open Source AI Image Upscaler",
|
2022-08-15 06:53:14 +02:00
|
|
|
"keywords": [
|
2022-08-23 15:17:34 +02:00
|
|
|
"AI",
|
|
|
|
"Upscaler",
|
|
|
|
"Image Upscale",
|
|
|
|
"Linux image upscale",
|
|
|
|
"Topaz Gigapixel",
|
2022-08-15 06:53:14 +02:00
|
|
|
"Linux",
|
2022-08-23 15:17:34 +02:00
|
|
|
"KDE",
|
|
|
|
"Gnome"
|
2022-08-15 06:53:14 +02:00
|
|
|
],
|
|
|
|
"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-24 06:50:30 +02:00
|
|
|
"dist": "npm run build && DEBUG=* electron-builder",
|
2022-08-23 16:29:22 +02:00
|
|
|
"publish-app": "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",
|
2022-08-24 06:50:30 +02:00
|
|
|
"appId": "org.upscayl.app",
|
2022-08-15 06:53:14 +02:00
|
|
|
"asar": true,
|
2022-08-16 04:17:27 +02:00
|
|
|
"extraFiles": [
|
2022-08-22 13:15:34 +02:00
|
|
|
{
|
2022-08-23 16:07:40 +02:00
|
|
|
"from": "resources/${os}/bin",
|
2022-08-23 16:17:16 +02:00
|
|
|
"to": "Resources/bin",
|
2022-08-23 15:17:34 +02:00
|
|
|
"filter": [
|
|
|
|
"**/*"
|
|
|
|
]
|
2022-08-22 13:15:34 +02:00
|
|
|
}
|
2022-08-16 04:17:27 +02:00
|
|
|
],
|
2022-08-25 04:07:05 +02:00
|
|
|
"mac": {
|
|
|
|
"icon": "main/build/icon.icns"
|
|
|
|
},
|
2022-08-15 06:53:14 +02:00
|
|
|
"linux": {
|
2022-08-22 10:31:16 +02:00
|
|
|
"publish": [
|
2022-08-21 17:11:11 +02:00
|
|
|
"github"
|
|
|
|
],
|
2022-08-15 06:53:14 +02:00
|
|
|
"target": [
|
2022-08-24 06:50:30 +02:00
|
|
|
"AppImage",
|
|
|
|
"flatpak"
|
2022-08-22 10:31:16 +02:00
|
|
|
],
|
|
|
|
"asarUnpack": [
|
2022-08-23 15:17:34 +02:00
|
|
|
"**/node_modules/sharp/**"
|
2022-08-24 04:31:43 +02:00
|
|
|
],
|
2022-08-25 04:07:05 +02:00
|
|
|
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;",
|
|
|
|
"maintainer": "TGS963 <tgs@963.com>"
|
|
|
|
},
|
|
|
|
"deb": {
|
|
|
|
"packageCategory": "graphics"
|
2022-08-15 06:53:14 +02:00
|
|
|
},
|
|
|
|
"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-23 16:07:40 +02:00
|
|
|
"app-root-dir": "^1.0.2",
|
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",
|
2022-08-25 14:35:38 +02:00
|
|
|
"react-dropzone": "^14.2.2",
|
2022-08-18 11:53:23 +02:00
|
|
|
"sharp": "^0.30.7",
|
|
|
|
"tailwind-scrollbar": "^1.3.1"
|
2022-08-15 06:53:14 +02:00
|
|
|
}
|
|
|
|
}
|