-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 742 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 742 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
{
"name": "xterm-recorder",
"version": "0.0.2",
"main": "bin/app.js",
"author": "javacs3",
"license": "MIT",
"bin": {
"xterm-recorder": "bin/app.js"
},
"scripts": {
"start": "node out/cli.js",
"build": "tsc -b ./tsconfig.json",
"lint": "eslint src --ext .ts"
},
"dependencies": {
"chalk": "^3.0.0",
"ffmpeg-static": "^4.0.1",
"node-pty": "^0.9.0",
"speech-recorder": "^1.1.5",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/node": "^13.9.0",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
},
"resolutions": {
"minimist": "^1.2.5"
}
}