ps-access 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,7 +17,9 @@ yourself.
|
|
|
17
17
|
## Requirements
|
|
18
18
|
|
|
19
19
|
- The controller connected by **USB-C** (the profile channel isn’t available over Bluetooth).
|
|
20
|
-
- CLI: Node.js (tested on v26)
|
|
20
|
+
- CLI: Node.js (tested on v26). `node-hid` is an **optional** dependency (installed
|
|
21
|
+
automatically) needed only to talk to the controller; commands that don't touch the device
|
|
22
|
+
(`presets`, `share`, `show-share`, `help`) and the web tool work even if it isn't built.
|
|
21
23
|
- Web tool: Chrome or Edge (desktop) for WebHID.
|
|
22
24
|
- macOS may prompt for **Input Monitoring** permission for the terminal/Chrome on first use.
|
|
23
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ps-access",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Read/write PlayStation Access Controller profiles from a PC (no PS5). CLI + WebHID tool + PC input bridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"url": "https://github.com/johnhenry/ps-access/issues"
|
|
47
47
|
},
|
|
48
48
|
"author": "johnhenry",
|
|
49
|
-
"
|
|
49
|
+
"optionalDependencies": {
|
|
50
50
|
"node-hid": "^3.1.2"
|
|
51
51
|
},
|
|
52
52
|
"license": "MIT"
|