peer-term 1.1.6 → 1.1.7

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/package.json +18 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,7 +1,24 @@
1
1
  {
2
2
  "name": "peer-term",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Share your terminal instantly using a 6-digit code. Encrypted. No config.",
5
+ "keywords": [
6
+ "terminal",
7
+ "terminal-sharing",
8
+ "remote-terminal",
9
+ "peer-to-peer",
10
+ "p2p",
11
+ "webrtc",
12
+ "encrypted",
13
+ "shell",
14
+ "pty",
15
+ "cli",
16
+ "ssh-alternative",
17
+ "pair-programming",
18
+ "code-sharing",
19
+ "xterm",
20
+ "tunnel"
21
+ ],
5
22
  "main": "src/index.js",
6
23
  "bin": {
7
24
  "peer-term": "./bin/peer-term.js"
package/src/index.js CHANGED
@@ -212,7 +212,7 @@ class Session {
212
212
  const config = JSON.stringify({
213
213
  type: 'session-config',
214
214
  readonly: this.readOnly,
215
- version: '1.1.6',
215
+ version: '1.1.7',
216
216
  shell: this.shell,
217
217
  startPath: this.startPath,
218
218
  });