forked from chjj/ttystudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1003 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": "ttystudio",
"description": "A terminal-to-gif recorder minus the headaches.",
"author": "Christopher Jeffrey",
"version": "0.0.1",
"main": "./index.js",
"bin": {
"ttystudio": "./bin/ttystudio",
"ttystudio-record": "./bin/record",
"ttystudio-compile": "./bin/compile",
"ttystudio-play": "./bin/play",
"tsrecord": "./bin/record",
"tscompile": "./bin/compile",
"tsplay": "./bin/play"
},
"scripts": {
"start": "./bin/ttystudio ~/ttystudio-test.gif"
},
"man": "./man/ttystudio.1",
"preferGlobal": true,
"repository": "git://github.com/chjj/ttystudio.git",
"homepage": "https://github.com/chjj/ttystudio",
"bugs": { "url": "http://github.com/chjj/ttystudio/issues" },
"license": "MIT",
"keywords": ["terminal", "tty", "record", "recorder", "gif", "png", "apng"],
"tags": ["terminal", "tty", "record", "recorder", "gif", "png", "apng"],
"dependencies": {
"blessed": "0.1.7",
"term.js": "0.0.5",
"pty.js": "0.2.8"
}
}