-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.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
{
"name": "window-screenshot-app",
"version": "1.0.0",
"description": "A Windows desktop app (Win 10+) to capture screenshots of selected windows or entire displays.",
"main": "main.js",
"author": "Immineal",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"dist": "electron-builder --publish=never"
},
"build": {
"appId": "com.yourcompany.window-screenshot-app",
"productName": "Window Screenshot App",
"icon": "icon.ico",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"renderer.js",
"index.html",
"style.css",
"preload.js",
"node_modules/**/*"
],
"win": {
"target": [
"nsis",
"portable"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"dependencies": {
"node-window-manager": "^2.2.4",
"screenshot-desktop": "^1.15.0",
"sharp": "^0.34.3"
}
}