-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 926 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
{
"name": "terminal-server",
"version": "1.0.0",
"description": "A terminal server which receives commands over TCP and validates them before executing shell commands",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node --files src/server.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ents-crew/terminal-server.git"
},
"author": "Ryan Delaney <vitineth@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ents-crew/terminal-server/issues"
},
"homepage": "https://github.com/ents-crew/terminal-server#readme",
"devDependencies": {
"@types/node": "^17.0.21",
"ts-node": "^10.5.0",
"typescript": "^4.7.0-dev.20220228"
},
"dependencies": {
"execa": "^6.1.0",
"jsonschema": "^1.4.0",
"split-cmd": "^1.0.1",
"zod": "^3.12.0"
}
}