-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.26 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": "sysinfoapp",
"version": "1.3.0",
"description": "System Info App",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder --win"
},
"author": "Nathan Patten (NRPatten)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrpatten/SysInfoApp.git"
},
"bugs": {
"url": "https://github.com/nrpatten/SysInfoApp/issues"
},
"homepage": "https://github.com/nrpatten/SysInfoApp",
"keywords": [
"gpu",
"cpu",
"ram",
"os",
"systeminfo",
"electron"
],
"devDependencies": {
"electron": "^5.0.1",
"electron-builder": "^20.15.1"
},
"optionalDependencies": {},
"dependencies": {
"systeminformation": "^4.9.0"
},
"build": {
"productName": "System Info v1.3",
"appId": "com.SysInfoApp.app",
"win": {
"asar": true,
"icon": "icons/sysinfo.ico",
"target": [
"portable"
]
},
"files": [
"main.js",
"package.json",
"pages",
"icons/*",
"node_modules"
],
"portable": {
"artifactName": "SysInfoApp.exe"
},
"directories": {
"output": "build"
}
}
}