mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-24 07:30:19 +01:00
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
{
|
|
"name": "upscayl",
|
|
"private": true,
|
|
"version": "1.5.1",
|
|
"productName": "Upscayl",
|
|
"author": "Nayam Amarshe <nayam@nay.am>",
|
|
"email": "nay@am.com",
|
|
"license": "GPLv2",
|
|
"description": "Upscayl - Linux first image upscale app",
|
|
"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",
|
|
"dist": "npm run build && electron-builder"
|
|
},
|
|
"build": {
|
|
"productName": "DeskCut",
|
|
"appId": "com.nayam.deskcut",
|
|
"asar": true,
|
|
"linux": {
|
|
"target": [
|
|
"AppImage",
|
|
"deb",
|
|
"rpm",
|
|
"flatpak",
|
|
"snap"
|
|
]
|
|
},
|
|
"snap": {
|
|
"confinement": "classic"
|
|
},
|
|
"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": {
|
|
"electron-is-dev": "^2.0.0",
|
|
"electron-next": "^3.1.5"
|
|
}
|
|
}
|