ocremote 1.3.0

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/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "ocremote",
3
+ "version": "1.3.0",
4
+ "description": "Control opencode on your computer from the OpenCode Remote iOS app: supervisor, pairing QR, relay and tunnel transports",
5
+ "type": "module",
6
+ "bin": {
7
+ "ocremote": "./oc-remote.mjs"
8
+ },
9
+ "files": [
10
+ "oc-remote.mjs",
11
+ "lib/",
12
+ "vendor/",
13
+ "install.sh"
14
+ ],
15
+ "engines": {
16
+ "node": ">=20"
17
+ },
18
+ "os": [
19
+ "darwin",
20
+ "linux"
21
+ ],
22
+ "keywords": [
23
+ "opencode",
24
+ "remote",
25
+ "pairing",
26
+ "tunnel",
27
+ "relay",
28
+ "ios"
29
+ ],
30
+ "license": "MIT",
31
+ "scripts": {
32
+ "test": "node --test test/proxy.test.mjs"
33
+ }
34
+ }