-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "dualshock4-lightbar-off",
"version": "1.0.0",
"description": "A simple Node.js script to turn off the light bar on a DUALSHOCK 4 Wireless Controller. This helps prevent unwanted reflections on screens and conserves battery life when the light bar is not needed.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"keywords": [
"dualshock4",
"dualshock-4",
"ps4-controller",
"playstation4",
"playstation-4",
"lightbar",
"light-bar-control",
"controller-utilities",
"gaming-peripherals",
"screen-reflection-fix",
"battery-saving",
"node-hid",
"usb-hid",
"bluetooth-controller",
"cross-platform"
],
"author": "Ryan Shahine",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryanshahine/dualshock4-lightbar-off.git"
},
"bugs": {
"url": "https://github.com/ryanshahine/dualshock4-lightbar-off/issues"
},
"homepage": "https://github.com/ryanshahine/dualshock4-lightbar-off#readme",
"dependencies": {
"crc": "^4.3.2",
"node-hid": "^3.1.2"
}
}