pi-link 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +0 -6
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -49,12 +49,6 @@ A single Pi terminal is powerful. Multiple terminals working together unlock new
49
49
  pi install npm:pi-link
50
50
  ```
51
51
 
52
- or from source:
53
-
54
- ```bash
55
- pi install https://github.com/alvivar/pi-link
56
- ```
57
-
58
52
  ### Uninstall
59
53
 
60
54
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-link",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "WebSocket-based inter-terminal communication for Pi. Connect multiple Pi terminals over a local link network.",
5
5
  "author": "alvivar",
6
6
  "license": "MIT",
@@ -23,6 +23,8 @@
23
23
  "@types/ws": "^8.18.1"
24
24
  },
25
25
  "pi": {
26
- "extensions": ["./index.ts"]
26
+ "extensions": [
27
+ "./index.ts"
28
+ ]
27
29
  }
28
30
  }