-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
34 lines (34 loc) · 819 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
{
"name": "touchbar-systemmonitor",
"version": "0.0.2",
"description": "A system monitor in Apple MacBook Pro touch bar -- use it with commmand: CommandOrControl+Shift+1",
"main": "src/main.js",
"engines": {
"node": ">=5.6"
},
"dependencies": {
"systeminformation": "^4.23.0"
},
"devDependencies": {
"electron": "^1.6.3",
"electron-builder": "^22.4.1"
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spagnuolocarmine/touchbar-systemmonitor.git"
},
"author": "Carmine Spagnuolo",
"license": "MIT",
"build": {
"appId": "Touch Bar System Monitor",
"mac": {
"target": "dmg",
"icon": "src/icons/icon.icns"
}
}
}