-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 969 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
{
"name": "web-sshd",
"version": "2.0.0",
"description": "SSHD via Socket.IO",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "set NODE_ENV=development && nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/server.ts",
"build": "tsc",
"serve": "set NODE_ENV=production && node ./build/server.js",
"install": "tsc",
"salty-auth": "node build/scripts/salty-auth.js"
},
"keywords": [
"websocket",
"websshd"
],
"author": "Untitled",
"license": "ISC",
"devDependencies": {
"@types/log4js": "^2.3.5",
"@types/node": "^13.13.2",
"@types/socket.io": "^2.1.4",
"@types/ssh2": "^0.5.43",
"@types/yargs": "^15.0.4",
"nodemon": "^2.0.3",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"dependencies": {
"log4js": "^6.4.0",
"node-pty": "^0.9.0",
"socket.io": "^2.3.0",
"ssh2": "^0.8.9",
"yargs": "^15.3.1"
}
}