1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/package.json
2022-08-27 15:30:20 +05:30

152 lines
3.7 KiB
JSON

{
"name": "upscayl",
"private": true,
"version": "1.2.0",
"productName": "Upscayl",
"homepage": "https://github.com/TGS963/upscayl",
"contributors": [
{
"name": "Nayam Amarshe",
"email": "nayam@amars.he",
"url": "https://github.com/NayamAmarshe"
},
{
"name": "TGS963",
"email": "tgs@963.com",
"url": "https://github.com/TGS963"
}
],
"email": "simplelogin-newsletter.j1zez@aleeas.com",
"license": "AGPL-3.0",
"description": "Upscayl - Free and Open Source AI Image Upscaler",
"keywords": [
"AI",
"Upscaler",
"Image Upscale",
"Linux image upscale",
"Topaz Gigapixel",
"Linux",
"KDE",
"Gnome"
],
"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",
"dist": "npm run build && DEBUG=* electron-builder",
"dist:appimage": "npm run build && DEBUG=* electron-builder build -l AppImage",
"dist:flatpak": "npm run build && DEBUG=* electron-builder build -l flatpak",
"dist:dmg": "npm run build && DEBUG=* electron-builder build -m dmg",
"dist:msi": "npm run build && DEBUG=* electron-builder build -w nsis",
"dist:pkg": "npm run build && DEBUG=* electron-builder build -m pkg",
"publish-app": "npm run build && electron-builder -wl --publish always",
"publish-mac-app": "npm run build && electron-builder -m --publish always"
},
"build": {
"productName": "Upscayl",
"appId": "org.upscayl.app",
"asar": true,
"extraFiles": [
{
"from": "resources/${os}/bin",
"to": "Resources/bin",
"filter": [
"**/*"
]
},
{
"from": "resources/models",
"to": "Resources/models",
"filter": [
"**/*"
]
}
],
"mac": {
"type": "distribution",
"hardenedRuntime": true,
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
]
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"publish": [
"github"
],
"target": [
"AppImage",
"flatpak"
],
"asarUnpack": [
"**/node_modules/sharp/**"
],
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;"
},
"win": {
"publish": [
"github"
],
"target": [
"nsis"
],
"asarUnpack": [
"**/node_modules/sharp/**"
],
"icon": "main/build/icon.png"
},
"files": [
"main",
"renderer/out"
]
},
"devDependencies": {
"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",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"electron-is-dev": "^2.0.0",
"electron-is-packaged": "^1.0.2",
"electron-next": "^3.1.5",
"electron-root-path": "^1.0.16",
"electron-updater": "^5.2.1",
"image-size": "^1.0.2",
"react-compare-slider": "^2.2.0",
"react-dropzone": "^14.2.2",
"sharp": "^0.30.7",
"tailwind-scrollbar": "^1.3.1"
}
}