{ "name": "upscayl", "private": true, "version": "2.8.0", "productName": "Upscayl", "homepage": "https://github.com/TGS963/upscayl", "contributors": [ { "name": "Nayam Amarshe", "email": "nayam.emikx@aleeas.com", "url": "https://github.com/NayamAmarshe" }, { "name": "TGS963", "email": "tgs@963.com", "url": "https://github.com/TGS963" } ], "email": "nayam.emikx@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": "tsc && electron .", "dev": "tsc && electron .", "build": "tsc && next build renderer && next export renderer", "tsc": "tsc", "pack-app": "tsc && npm run build && electron-builder --dir", "dist": "tsc && npm run build && cross-env DEBUG=* electron-builder", "dist:appimage": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l AppImage", "dist:flatpak": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l flatpak", "dist:deb": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l deb", "dist:rpm": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l rpm", "dist:zip": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l zip", "dist:dmg": "tsc && npm run build && cross-env DEBUG=* electron-builder build -m dmg", "dist:msi": "tsc && npm run build && cross-env DEBUG=* electron-builder build -w nsis", "dist:pkg": "tsc && npm run build && cross-env DEBUG=* electron-builder build -m pkg", "publish-app": "tsc && npm run build && electron-builder -wl --publish always", "publish-linux-app": "tsc && npm run build && electron-builder -l --publish always", "publish-win-app": "tsc && npm run build && electron-builder -w --publish always", "publish-mac-universal-app": "tsc && npm run build && electron-builder --mac --universal --publish always", "publish-mac-app": "tsc && npm run build && electron-builder --mac --x64 --publish always", "publish-mac-arm-app": "tsc && npm run build && electron-builder --mac --arm64 --publish always" }, "build": { "productName": "Upscayl", "appId": "org.upscayl.app", "artifactName": "${name}-${version}-${os}.${ext}", "asar": true, "asarUnpack": [ "**/node_modules/sharp/**/*" ], "extraFiles": [ { "from": "resources/${os}/bin", "to": "resources/bin", "filter": [ "**/*" ] }, { "from": "resources/models", "to": "resources/models", "filter": [ "**/*" ] }, { "from": "resources/icon_128x128.png", "to": "icon_128x128.png", "filter": [ "**/*" ] }, { "from": "resources/icon_512x512.png", "to": "icon_512x512.png", "filter": [ "**/*" ] }, { "from": "org.upscayl.Upscayl.desktop", "to": "org.upscayl.Upscayl.desktop" } ], "mac": { "category": "public.app-category.photography", "type": "distribution", "hardenedRuntime": true, "entitlements": "resources/entitlements.mac.plist", "entitlementsInherit": "resources/entitlements.mac.plist", "notarize": false, "gatekeeperAssess": false, "mergeASARs": false, "target": [ { "target": "dmg", "arch": [ "universal" ] }, { "target": "zip", "arch": [ "universal" ] } ], "x64ArchFiles": "*" }, "dmg": { "sign": "false", "contents": [ { "x": 130, "y": 220 }, { "x": 410, "y": 220, "type": "link", "path": "/Applications" } ] }, "linux": { "publish": [ "github" ], "target": [ "AppImage", "zip", "deb", "rpm" ], "maintainer": "Nayam Amarshe ", "category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;", "synopsis": "AI Image Upscaler", "description": "Free and Open Source AI Image Upscaler" }, "win": { "publish": [ "github" ], "target": [ "nsis" ], "icon": "main/build/icon.png" }, "nsis": { "allowToChangeInstallationDirectory": true, "oneClick": false, "allowElevation": true, "perMachine": true }, "files": [ "main", "renderer/out" ] }, "devDependencies": { "@types/node": "^18.15.12", "@types/react": "^18.0.37", "@types/react-dom": "^18.0.11", "autoprefixer": "^10.4.14", "cross-env": "^7.0.3", "electron": "^25.5.0", "electron-builder": "^24.4.0", "next": "^13.3.0", "postcss": "^8.4.23", "prettier": "^3.0.0", "prettier-plugin-tailwindcss": "^0.4.1", "react": "^18.2.0", "react-dom": "^18.2.0", "tailwindcss": "^3.3.1", "typescript": "^4.8.4" }, "dependencies": { "daisyui": "^3.3.1", "dotenv": "^16.3.1", "electron-is-dev": "^2.0.0", "electron-log": "^5.0.0-beta.16", "electron-next": "^3.1.5", "electron-updater": "^6.1.1", "firebase": "^10.3.0", "jotai": "^2.2.2", "react-compare-slider": "^2.2.0", "react-select": "^5.7.4", "react-tooltip": "^5.18.1", "sharp": "^0.32.5", "tailwind-scrollbar": "^3.0.4", "theme-change": "^2.5.0" }, "volta": { "node": "16.17.0" } }