-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
54
55
56
57
58
{
"name": "ytdl-tui",
"version": "0.9.70",
"description": "TUI for downloading Youtube videos",
"repository": {
"type": "git",
"url": "git://github.com/darky/ytdl-tui.git"
},
"files": [
"dist/src/*.js"
],
"bin": {
"ytdl-tui": "./dist/src/index.js"
},
"scripts": {
"build": "rm -rf dist && npx tsc && npx tsc-alias && sed -i '1 i #!/usr/bin/env node' dist/src/index.js && chmod +x dist/src/index.js",
"dev": "node --inspect -r ts-node/register/transpile-only -r tsconfig-paths/register src/index.tsx",
"prepublishOnly": "npm run build",
"test": "npm run build && NODE_ENV=test node dist/test/test.js"
},
"keywords": [
"youtube",
"download",
"tui"
],
"author": "Vladislav Botvin",
"license": "MIT",
"dependencies": {
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-form": "^1.0.2",
"nanostores-cjs": "^0.7.1",
"react": "^17.0.2",
"repl-ns": "^0.0.15",
"ts-pattern": "^4.0.6",
"ytdl-core": "^4.11.2",
"ytdl-core-muxer-by-darky": "^1.0.3"
},
"devDependencies": {
"@swc/core": "1.3.24",
"@types/fluent-ffmpeg": "2.1.20",
"@types/ink-big-text": "1.2.1",
"@types/node": "18.11.17",
"@types/react": "17.0.39",
"@types/sinon": "10.0.13",
"ink-testing-library": "2.1.0",
"node-remote-repl": "1.2.0",
"prettier": "2.8.1",
"sinon": "15.0.1",
"ts-node": "10.9.1",
"tsc-alias": "1.8.2",
"tsconfig-paths": "4.1.1",
"typescript": "4.9.4",
"uvu": "0.5.6"
}
}