-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 980 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 980 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "tty-console",
"version": "1.0.3",
"description": "Terminal console runtime for Node servers with command parsing and embeddable API",
"private": false,
"author": "Simon <simon@istaria.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/materia79/tty.git"
},
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"default": "./index.js"
}
},
"type": "commonjs",
"files": [
"index.js",
"commands/",
"README.md"
],
"engines": {
"node": ">=20"
},
"keywords": [
"console",
"tty",
"terminal",
"cli",
"tui",
"terminal",
"console-log",
"command-parser",
"repl",
"runtime",
"node",
"blessed"
],
"scripts": {
"start": "node index.js",
"test": "node --test \"test/scripts/*.test.js\""
},
"dependencies": {
"neo-blessed": "^0.2.0"
},
"devDependencies": {
"node-pty": "^1.1.0"
}
}