-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.04 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "upscale-engine-cc",
"productName": "Upscale Engine CC",
"version": "1.0.0",
"description": "Premium AI Image Upscaler - Desktop Edition",
"author": "Your Name",
"private": true,
"main": "electron-main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win",
"package": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@types/file-saver": "^2.0.7",
"axios": "^1.6.0",
"file-saver": "^2.0.5",
"idb": "^8.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.454.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"systeminformation": "^5.27.11"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.0",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.upscaleengine.cc",
"productName": "Upscale Engine CC",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron-main.js",
"electron-preload.js",
"backend/**/*",
"!backend/.venv/**/*",
"!backend/__pycache__/**/*",
"models/.gitkeep"
],
"extraResources": [
{
"from": "backend",
"to": "backend",
"filter": [
"**/*",
"!.venv/**/*",
"!__pycache__/**/*"
]
}
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}