-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1009 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
35
36
37
38
{
"name": "corsair_battery_level",
"version": "2.0.0",
"description": "Display the current state and battery level of a Corsair headset",
"bin": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SaifAqqad/corsair_battery_level.git"
},
"author": "SaifAqqad",
"license": "ISC",
"bugs": {
"url": "https://github.com/SaifAqqad/corsair_battery_level/issues"
},
"homepage": "https://github.com/SaifAqqad/corsair_battery_level#readme",
"dependencies": {
"node-hid": "^2.1.1",
"systray2": "^2.1.2"
},
"devDependencies": {
"create-nodew-exe": "^1.0.8",
"pkg": "^5.3.1"
},
"scripts": {
"build": "pkg . && create-nodew-exe corsair_battery_level.exe corsair_battery_level.exe"
},
"pkg": {
"assets": [
"icons/*",
"node_modules/node-hid/build/Release/HID.node",
"node_modules/systray2/traybin/tray_windows_release.exe"
],
"targets": [
"win"
],
"output" : "corsair_battery_level.exe"
}
}