-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
{
"name": "auto-ticketing",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:osx": "electron-builder --mac",
"deploy:win": "npm run deploy:win32 && npm run deploy:win64",
"deploy:win32": "electron-builder --win nsis:ia32",
"deploy:win64": "electron-builder --win nsis:x64"
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^24.1.2",
"electron-builder": "^24.3.0"
},
"dependencies": {
"node-tesseract": "^0.2.7",
"node-tesseract-ocr": "^2.2.1",
"puppeteer": "^19.11.1",
"puppeteer-core": "^19.11.1",
"puppeteer-in-electron": "^3.0.5",
"tesseract.js": "^4.0.3"
},
"build": {
"productName": "Auto-Ticketing",
"appId": "net.jetalab.ex.auto_ticketing",
"asar": true,
"mac": {
"target": [
"default"
]
},
"dmg": {
"title": "Auto-Ticketing"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./dist/",
"app": "."
}
}
}