-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"private": true,
"name": "super-resolution",
"description": "Free and open source AI image upscaler. It uses the latest AI technology to upscale images to higher resolutions.",
"version": "2.2.0",
"author": "Urij Horuzij",
"homepage": "https://github.com/UrijHoruzij/super-resolution",
"license": "MIT",
"main": "main/background.js",
"scripts": {
"dev": "next dev",
"electron": "electron .",
"build": "next build && next export",
"dist": "npm run build && electron-builder ",
"dist:deb": "electron-builder build -l deb",
"dist:rpm": "electron-builder build -l rpm",
"dist:dmg": "electron-builder build -m dmg",
"dist:pkg": "electron-builder build -m pkg",
"dist:msi": "electron-builder build -w nsis",
"publish-linux-app": "electron-builder -l --publish always",
"publish-win-app": "electron-builder -w --publish always",
"publish-mac-app": "electron-builder -m --publish always",
"postinstall": "electron-builder install-app-deps",
"prepare": "husky install"
},
"dependencies": {
"classnames": "^2.3.2",
"electron-is-dev": "^2.0.0",
"electron-reload": "^2.0.0-alpha.1",
"electron-serve": "^1.1.0",
"electron-updater": "^5.3.0",
"gm": "^1.25.0",
"graphicsmagick": "^0.0.1",
"imagemagick": "^0.1.3",
"sharp": "^0.31.3",
"ui-forest": "^1.11.6"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"electron": "^22.0.2",
"electron-builder": "^23.6.0",
"husky": "^8.0.3",
"next": "^13.1.2",
"next-transpile-modules": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}