-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 978 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "termtalk",
"version": "2.0.0",
"description": "Npm package to securely chat with your friend through your CLI.",
"scripts": {
"host": "node ./server/server.js",
"join": "node ./client/client.js"
},
"bin": {
"tt-host": "server/server.js",
"tt-join": "client/client.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achhayapathak/termtalk.git"
},
"keywords": [
"chat",
"chat-room",
"cli-chat",
"chat-app",
"terminal-chat",
"terminal"
],
"author": "Achhaya Pathak",
"license": "MIT",
"bugs": {
"url": "https://github.com/achhayapathak/termtalk/issues"
},
"homepage": "https://github.com/achhayapathak/termtalk#readme",
"dependencies": {
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"localtunnel": "^2.0.2",
"portscanner": "^2.2.0",
"prompt": "^1.3.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.8.0"
}
}