oorja 1.6.2 → 1.6.4
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 -8
- package/oclif.manifest.json +1 -1
- package/package.json +11 -4
- package/NOTICE.txt +0 -5
package/README.md
CHANGED
|
@@ -24,10 +24,10 @@ Your stream can be view-only or collaboration enabled (command-line flag).
|
|
|
24
24
|
|
|
25
25
|
# Install and stream!
|
|
26
26
|
|
|
27
|
-
-
|
|
27
|
+
- You'll need Node 16. CLI is available via npm. <br />
|
|
28
28
|
<a href="https://nodejs.org/en/download/" target="_blank">
|
|
29
|
-
You can setup node/npm from here
|
|
30
|
-
</a>
|
|
29
|
+
You can setup node/npm from here.
|
|
30
|
+
</a> **Only Node 16 is supported**
|
|
31
31
|
- **optional but highly recommended for successful install -> [npm install without sudo](https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md)**.
|
|
32
32
|
- `npm install -g oorja`
|
|
33
33
|
- `teletype`
|
|
@@ -95,9 +95,6 @@ EXAMPLES
|
|
|
95
95
|
Will also allow room participants to write to your terminal!
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
-
_See code: [src/commands/teletype/index.ts](https://github.com/akshaykmr/teletype/blob/v1.6.1/src/commands/teletype/index.ts)_
|
|
99
|
-
|
|
100
|
-
|
|
101
98
|
## `oorja signout`
|
|
102
99
|
|
|
103
100
|
sign-out and clear saved access token from any prior login. By default cli
|
|
@@ -123,5 +120,3 @@ ARGUMENTS
|
|
|
123
120
|
OPTIONS
|
|
124
121
|
--all see all commands in CLI
|
|
125
122
|
```
|
|
126
|
-
|
|
127
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.1.0/src/commands/help.ts)_
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.6.
|
|
1
|
+
{"version":"1.6.4","commands":{"signout":{"id":"signout","description":"Sign-out of oorja. Clears saved auth-token","pluginName":"oorja","pluginType":"core","aliases":[],"flags":{},"args":[]},"teletype":{"id":"teletype","description":"Launch a terminal streaming session in oorja.","pluginName":"oorja","pluginType":"core","aliases":["tty"],"examples":["\u001b[94m$ teletype\u001b[39m\nWill prompt to choose streaming destination - existing room or create a new one.\n\n","\u001b[94m$ teletype 'https://oorja.io/rooms?id=foo#key'\u001b[39m\nWill stream to the room specified by secret link, you must have joined the room before streaming.\n\n","\u001b[94m$ teletype -m\u001b[39m\nWill also allow room participants to write to your terminal!\n\n"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"show CLI help","allowNo":false},"shell":{"name":"shell","type":"option","char":"s","description":"shell to use. e.g. bash, fish","default":"/usr/bin/zsh"},"multiplex":{"name":"multiplex","type":"boolean","char":"m","description":"Allows room users to WRITE TO YOUR SHELL i.e enables collaboration mode. Make sure you trust room participants. Off by default","allowNo":false}},"args":[{"name":"room"}]}}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oorja",
|
|
3
3
|
"description": "stream terminals to the web and more.",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.4",
|
|
5
5
|
"author": "Akshay Kumar @akshaykmr",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oorja": "./bin/run",
|
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
"tslint-config-prettier": "^1.18.0",
|
|
37
37
|
"tslint-plugin-prettier": "^2.3.0",
|
|
38
38
|
"tslint-react": "^4.2.0",
|
|
39
|
-
"typescript": "^4.9.4"
|
|
39
|
+
"typescript": "^4.9.4",
|
|
40
|
+
"aws-sdk": "2.1282"
|
|
40
41
|
},
|
|
41
42
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
43
|
+
"node": ">=16.0.0 <17.0.0"
|
|
43
44
|
},
|
|
44
45
|
"files": [
|
|
45
46
|
"/bin",
|
|
@@ -63,7 +64,13 @@
|
|
|
63
64
|
"plugins": [
|
|
64
65
|
"@oclif/plugin-help",
|
|
65
66
|
"conf-cli"
|
|
66
|
-
]
|
|
67
|
+
],
|
|
68
|
+
"update": {
|
|
69
|
+
"s3": {
|
|
70
|
+
"host": "https://cli-dist-a327765.s3.amazonaws.com",
|
|
71
|
+
"bucket": "cli-dist-a327765"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
67
74
|
},
|
|
68
75
|
"repository": "akshaykmr/TeleType",
|
|
69
76
|
"scripts": {
|