-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.03 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
{
"name": "bd-erp",
"version": "1.3.0",
"description": "An ERP app",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"author": "TED",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^22.3.13",
"electron-builder": "^23.6.0"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"electron-log": "^5.1.7",
"electron-updater": "^6.2.1",
"google-auth-library": "^9.14.0",
"googleapis": "^142.0.0",
"sqlite3": "^5.1.6"
},
"build": {
"appId": "ted.bderp",
"productName": "BdErp",
"publish": [
{
"provider": "github",
"owner": "cyril1018",
"repo": "bd-erp"
}
],
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.png",
"artifactName": "BdErp.Setup.${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"differentialPackage": true
}
}
}