-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "hypersampler-web",
"version": "1.0.2",
"description": "Web-based image dataset augmentation tool",
"private": true,
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"vite": "^5.4.2",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.hypersampler.app",
"productName": "HyperSampler",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"sign": null
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"extraMetadata": {
"author": "HyperSampler"
}
}
}