1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-23 19:08:25 +02:00
upscayl/package.json

259 lines
8.1 KiB
JSON
Raw Permalink Normal View History

2022-11-11 21:49:16 +01:00
{
"name": "upscayl",
"private": true,
2024-06-01 12:53:53 +02:00
"version": "2.11.5",
2022-11-11 21:49:16 +01:00
"productName": "Upscayl",
2023-11-02 16:03:21 +01:00
"author": {
"name": "Nayam Amarshe",
"email": "nayam.emikx@aleeas.com",
"url": "https://github.com/NayamAmarshe"
},
2022-11-11 21:49:16 +01:00
"homepage": "https://github.com/TGS963/upscayl",
"contributors": [
{
"name": "Nayam Amarshe",
2023-05-01 09:55:26 +02:00
"email": "nayam.emikx@aleeas.com",
2022-11-11 21:49:16 +01:00
"url": "https://github.com/NayamAmarshe"
},
{
"name": "TGS963",
"email": "tgs@963.com",
"url": "https://github.com/TGS963"
}
],
2023-05-01 09:55:26 +02:00
"email": "nayam.emikx@aleeas.com",
2022-11-11 21:49:16 +01:00
"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"
],
2023-10-25 13:44:22 +02:00
"main": "export/electron/index.js",
2022-11-11 21:49:16 +01:00
"scripts": {
"clean": "rimraf dist renderer/.next renderer/out",
2022-11-11 21:50:20 +01:00
"start": "tsc && electron .",
2022-11-11 22:32:24 +01:00
"dev": "tsc && electron .",
"build": "tsc && next build renderer",
2022-11-11 21:49:16 +01:00
"tsc": "tsc",
2023-05-04 08:21:12 +02:00
"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",
2023-10-14 09:51:52 +02:00
"dist:mac-zip": "tsc && npm run build && cross-env DEBUG=* electron-builder build -l zip",
"dist:dmg": "tsc && npm run build && electron-builder build -m dmg",
2023-05-04 08:21:12 +02:00
"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",
2023-09-13 16:07:45 +02:00
"dist:mac": "tsc && npm run build && electron-builder --mac --universal",
"dist:mac-arm64": "tsc && npm run build && electron-builder --mac --arm64",
2024-01-18 14:49:14 +01:00
"dist:mas": "npm run enable-store && tsc && npm run build && electron-builder --mac mas --universal -c mas.json && npm run disable-store",
2024-02-14 07:00:39 +01:00
"dist:mas-dev": "npm run enable-store && tsc && npm run build && electron-builder --mac mas-dev --universal -c mas-dev.json && npm run disable-store",
2023-09-13 16:07:45 +02:00
"dist:win": "tsc && npm run build && electron-builder --win",
"dist:linux": "tsc && npm run build && electron-builder --linux",
2023-09-22 15:34:26 +02:00
"publish-app": "tsc && npm run build && electron-builder -wlm --publish always",
2023-05-04 08:21:12 +02:00
"publish-linux-app": "tsc && npm run build && electron-builder -l --publish always",
"publish-win-app": "tsc && npm run build && electron-builder -w --publish always",
2023-09-09 19:11:23 +02:00
"publish-mac-universal-app": "tsc && npm run build && electron-builder --mac --universal --publish always",
2023-09-13 15:14:46 +02:00
"publish-mac-app": "tsc && npm run build && electron-builder --mac --x64 --publish always",
2023-10-21 15:43:03 +02:00
"publish-mac-arm-app": "tsc && npm run build && electron-builder --mac --arm64 --publish always",
2024-01-18 14:49:14 +01:00
"dist:appstore": "CSC_KEY_PASSWORD=$PASSWORD CSC_LINK=$(openssl base64 -in $CERTIFICATE_PATH) npm run dist:mac-mas",
"enable-store": "sed -i '' -e 's/APP_STORE_BUILD: false,/APP_STORE_BUILD: true,/' common/feature-flags.ts",
"disable-store": "sed -i '' -e 's/APP_STORE_BUILD: true,/APP_STORE_BUILD: false,/' common/feature-flags.ts"
2022-11-11 21:49:16 +01:00
},
"build": {
"productName": "Upscayl",
2023-10-14 03:06:38 +02:00
"appId": "org.upscayl.Upscayl",
2023-09-04 17:59:17 +02:00
"artifactName": "${name}-${version}-${os}.${ext}",
2023-10-27 14:37:48 +02:00
"afterSign": "./notarize.js",
2022-11-11 21:49:16 +01:00
"asar": true,
"asarUnpack": [
"**/node_modules/sharp/**/*"
],
2022-11-11 21:49:16 +01:00
"extraFiles": [
{
2023-09-04 17:59:17 +02:00
"from": "resources/${os}/bin",
2022-11-11 21:49:16 +01:00
"to": "resources/bin",
"filter": [
"**/*"
]
},
{
"from": "resources/models",
"to": "resources/models",
"filter": [
"**/*"
]
2023-05-09 10:18:52 +02:00
},
{
2023-09-21 09:20:37 +02:00
"from": "org.upscayl.Upscayl.desktop",
"to": "resources/org.upscayl.Upscayl.desktop"
2023-05-09 10:18:52 +02:00
},
{
2023-09-21 09:20:37 +02:00
"from": "resources/icons/128x128.png",
"to": "resources/128x128.png"
2023-06-08 09:24:03 +02:00
},
{
2023-09-21 09:20:37 +02:00
"from": "resources/icons/512x512.png",
"to": "resources/512x512.png"
2022-11-11 21:49:16 +01:00
}
],
2023-10-15 07:27:13 +02:00
"mas": {
"hardenedRuntime": false,
2023-11-02 16:03:21 +01:00
"electronLanguages": [
"en"
],
2023-10-15 07:27:13 +02:00
"category": "public.app-category.photography",
2023-10-15 08:13:55 +02:00
"entitlements": "resources/entitlements.mas.plist",
2023-10-21 15:43:03 +02:00
"entitlementsInherit": "resources/entitlements.mas.inherit.plist",
2023-10-15 07:27:13 +02:00
"provisioningProfile": "embedded.provisionprofile",
"mergeASARs": false,
2023-10-21 15:43:03 +02:00
"gatekeeperAssess": false,
2023-10-15 07:27:13 +02:00
"icon": "build/icon.icns",
"x64ArchFiles": "*",
"target": [
{
2023-10-21 15:43:03 +02:00
"target": "mas",
2023-10-15 07:27:13 +02:00
"arch": [
"universal"
]
}
]
},
2022-11-11 21:49:16 +01:00
"mac": {
"hardenedRuntime": true,
2023-09-21 09:20:37 +02:00
"gatekeeperAssess": false,
"mergeASARs": false,
"x64ArchFiles": "*",
2024-01-26 03:54:04 +01:00
"minimumSystemVersion": "12.0.0",
"category": "public.app-category.photography",
2023-09-03 10:14:13 +02:00
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
2023-11-02 16:03:21 +01:00
"provisioningProfile": "embedded.provisionprofile",
2022-11-11 21:49:16 +01:00
"target": [
{
"target": "dmg",
"arch": [
2023-09-03 10:14:13 +02:00
"universal"
2022-11-11 21:49:16 +01:00
]
2023-09-03 12:00:39 +02:00
},
{
"target": "zip",
"arch": [
"universal"
]
2022-11-11 21:49:16 +01:00
}
]
2023-10-14 03:00:49 +02:00
},
2022-11-11 21:49:16 +01:00
"dmg": {
2023-09-03 10:14:13 +02:00
"sign": "false",
2022-11-11 21:49:16 +01:00
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"zip",
"deb",
2022-12-22 22:25:25 +01:00
"rpm"
2022-11-11 21:49:16 +01:00
],
2022-12-22 21:54:35 +01:00
"maintainer": "Nayam Amarshe <simplelogin-newsletter.j1zez@aleeas.com>",
"category": "Graphics;2DGraphics;RasterGraphics;ImageProcessing;",
"synopsis": "AI Image Upscaler",
2023-09-21 09:20:37 +02:00
"description": "Free and Open Source AI Image Upscaler",
"icon": "resources/icons/"
2022-11-11 21:49:16 +01:00
},
"win": {
2023-11-10 14:25:19 +01:00
"publisherName": "Upscayl Team",
2022-11-11 21:49:16 +01:00
"target": [
"nsis",
"zip"
2022-11-11 21:49:16 +01:00
],
2023-10-25 13:44:22 +02:00
"icon": "build/icon.png"
2022-11-11 21:49:16 +01:00
},
"nsis": {
"allowToChangeInstallationDirectory": true,
2022-12-22 16:05:36 +01:00
"oneClick": false,
"allowElevation": true,
"perMachine": true
},
2022-11-11 21:49:16 +01:00
"files": [
2023-10-25 13:44:22 +02:00
"export",
2022-11-11 21:49:16 +01:00
"renderer/out"
],
"publish": {
"provider": "github"
}
2022-11-11 21:49:16 +01:00
},
"devDependencies": {
2023-09-21 10:13:34 +02:00
"@electron/notarize": "^2.1.0",
2023-11-26 09:04:03 +01:00
"@tailwindcss/typography": "^0.5.10",
2023-04-20 20:39:41 +02:00
"@types/node": "^18.15.12",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
2023-10-26 12:27:08 +02:00
"autoprefixer": "^10.4.16",
2023-09-03 10:14:13 +02:00
"cross-env": "^7.0.3",
2024-04-18 23:58:47 +02:00
"daisyui": "^4.10.2",
2024-04-17 18:18:45 +02:00
"electron": "^27.3.10",
"electron-builder": "^24.13.3",
"next": "^14.2.10",
"postcss": "^8.4.31",
2024-02-07 02:23:19 +01:00
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
2023-10-26 12:27:08 +02:00
"tailwindcss": "^3.3.5",
2022-11-11 21:49:16 +01:00
"typescript": "^4.8.4"
},
"dependencies": {
2024-04-17 18:18:45 +02:00
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
2024-04-21 16:04:59 +02:00
"@radix-ui/react-toast": "^1.1.5",
2024-04-17 18:18:45 +02:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
2023-09-03 10:14:13 +02:00
"dotenv": "^16.3.1",
2022-11-11 21:49:16 +01:00
"electron-is-dev": "^2.0.0",
2023-03-31 12:33:48 +02:00
"electron-log": "^5.0.0-beta.16",
2022-11-11 21:49:16 +01:00
"electron-next": "^3.1.5",
2024-04-22 09:21:07 +02:00
"electron-settings": "^4.0.3",
"electron-updater": "^6.3.0",
"eslint-config-next": "^14.2.7",
"firebase": "^10.11.0",
2023-11-26 09:04:03 +01:00
"gray-matter": "^4.0.3",
"jotai": "^2.2.2",
2024-04-17 18:18:45 +02:00
"lucide-react": "^0.366.0",
"react-compare-slider": "^3.0.1",
2023-11-26 09:04:03 +01:00
"react-markdown": "^9.0.1",
2024-04-17 18:18:45 +02:00
"react-resizable-panels": "^2.0.16",
"react-select": "^5.7.4",
"react-tooltip": "^5.18.1",
2023-11-26 09:04:03 +01:00
"remark-gfm": "^4.0.0",
2024-04-17 18:18:45 +02:00
"tailwind-merge": "^2.2.2",
"tailwind-scrollbar": "^3.0.4",
2024-04-17 18:18:45 +02:00
"tailwindcss-animate": "^1.0.7",
"theme-change": "^2.5.0"
2022-11-11 21:49:16 +01:00
},
"volta": {
2023-12-03 07:36:00 +01:00
"node": "18.17.0"
2022-11-11 21:49:16 +01:00
}
}