-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
{
"name": "vot-cli",
"version": "1.4.3",
"description": "A small script that allows you to download an audio translation from Yandex via the terminal.",
"type": "module",
"main": "./src/index.js",
"bin": "./src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"format": "prettier --write --ignore-unknown \"src/**/*.{js,ts,json}\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/vot-cli.git"
},
"keywords": [
"cli",
"vot",
"vot-cli",
"voice-over-translation",
"downloader",
"foswly"
],
"author": "Toil",
"license": "MIT",
"bugs": {
"url": "https://github.com/FOSWLY/vot-cli/issues",
"email": "me@toil.cc"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/FOSWLY/vot-cli/#readme",
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"jsdom": "^24.1.0",
"listr2": "^8.2.3",
"minimist": "^1.2.8",
"protobufjs": "^7.3.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.3.2"
}
}