-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.66 KB
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
54
55
56
57
58
59
{
"name": "vot-cli",
"version": "2.0.1",
"description": "A small script that allows you to download an audio translation from Yandex via the terminal.",
"keywords": [
"cli",
"downloader",
"foswly",
"voice-over-translation",
"vot",
"vot-cli"
],
"homepage": "https://github.com/FOSWLY/vot-cli/#readme",
"bugs": {
"url": "https://github.com/FOSWLY/vot-cli/issues",
"email": "me@toil.cc"
},
"license": "MIT",
"author": "Toil",
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/vot-cli.git"
},
"bin": "./dist/index.js",
"type": "module",
"scripts": {
"update:config": "bun run scripts/updateConfig.ts",
"update:schema": "bun run scripts/codeGen.ts",
"update:all": "bun run update:config && bun run update:schema",
"compile": "bun run update:all && bun run scripts/crossCompile.ts",
"build:bun": "bun run build",
"build:raw": "bun run update:all && tsc --project tsconfig.build.json --outdir ./dist && tsc-esm-fix --tsconfig tsconfig.build.json",
"build": "bun run update:all && bun run build:raw",
"lint": "bunx oxlint",
"lint:fix": "bunx oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@vot.js/core": "^2.4.20",
"@vot.js/node": "^2.4.20",
"@vot.js/shared": "^2.4.20",
"listr2": "^10.2.2",
"minimist": "^1.2.8",
"yoctocolors": "^2.1.2",
"yt-dlp-wrap-plus": "^2.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"lefthook": "^2.1.10",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"tsc-esm-fix": "^3.1.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.3.0"
}
}