-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 KB
/
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
38
39
40
41
42
43
44
{
"name": "autosubsync",
"version": "0.2.7",
"description": "Auto synchronize subtitles with video file",
"main": "./index.js",
"bin": "./cli.js",
"scripts": {
"build": "node build.js",
"watch": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"dist": "npm run build && npm publish dist",
"release-patch": "npm version patch && npm run dist",
"release-minor": "npm version minor && npm run dist",
"release-major": "npm version major && npm run dist"
},
"keywords": [
"subtitles",
"sync",
"auto"
],
"author": {
"name": "Snirpo"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@google-cloud/speech": "^3.6.0",
"fast-glob": "^3.1.1",
"lodash": "^4.17.15",
"node-vad": "^1.1.4",
"talisman": "^0.21.0",
"winston": "^3.2.1",
"yargs": "^15.0.0"
},
"devDependencies": {
"@types/node": "^12.12.26",
"fs-extra": "^8.1.0",
"rimraf": "^3.0.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}