-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 905 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
{
"name": "public",
"version": "1.0.0",
"description": "A simple finger service that returns latest tweets for a user. Works on a TCP port (e.g. the classic port 79) and also on a websocket.",
"main": "app.js",
"scripts": {
"shell": "npx ts-node src/app.ts shell",
"service": "npx ts-node src/app.ts"
},
"author": "encse",
"license": "ISC",
"dependencies": {
"@types/node": "^18.11.10",
"@types/twitter": "^1.7.1",
"@types/websocket": "^1.0.5",
"cors": "^2.8.5",
"express": "^4.18.2",
"glkote-term": "^0.4.4",
"ifvms": "^1.1.6",
"mute-stream": "^0.0.8",
"node-fetch": "^2.6.7",
"node-pty": "^0.10.1",
"ts-node": "^10.7.0",
"twitter": "^1.7.1",
"typescript": "^4.9.3",
"websocket": "^1.0.28"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node-fetch": "^2.6.2"
}
}