-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (39 loc) · 953 Bytes
/
package.json
File metadata and controls
42 lines (39 loc) · 953 Bytes
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
{
"name": "venuevision",
"version": "1.0.0",
"description": "A Hall/Complex management system",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"package": "electron-packager . my-electron-app --platform=win32 --arch=x64 --out=dist --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaplink/VenueVision.git"
},
"author": "W.U.S.Hasindu & P.Madhusanka",
"license": "ISC",
"bugs": {
"url": "https://github.com/zaplink/VenueVision/issues"
},
"homepage": "https://github.com/zaplink/VenueVision#readme",
"devDependencies": {
"electron": "^31.3.1",
"electron-packager": "^17.1.2",
"electron-reload": "^2.0.0-alpha.1"
},
"build": {
"appId": "com.zaplink.venuevision",
"linux": {
"target": [
"rpm"
]
},
"win": {
"target": [
"nsis"
]
}
}
}