-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 880 Bytes
/
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
{
"name": "S-Crop",
"version": "1.0.1",
"description": "Snipping tool with OCR feature",
"main": "main.js",
"scripts": {
"start": "electron .",
"distribute": "electron-builder"
},
"build": {
"appId": "S-Crop",
"win": {
"target": [
"nsis"
],
"icon": "fav.ico"
},
"nsis": {
"installerIcon": "fav.ico",
"uninstallerIcon": "fav.ico",
"uninstallDisplayName": "S-Crop",
"license": "license.txt",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"keywords": [
"Electron",
"OCR",
"Snipping",
"Crop",
"tool"
],
"author": "MB",
"devDependencies": {
"electron": "^13.1.1",
"electron-builder": "^22.10.5"
},
"dependencies": {
"@electron/remote": "^1.1.0",
"tesseract.js": "2.1.3",
"v8-compile-cache": "^2.3.0"
}
}