-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ytdlp-nodejs",
"version": "3.4.2",
"description": "A TypeScript wrapper for the yt-dlp executable",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"ytdlp": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\"",
"download:ytdlp": "tsx ./src/scripts/downloadYtdlp.ts",
"download:ffmpeg": "tsx ./src/scripts/downloadFFmpeg.ts",
"postdownload": "node ./dist/scripts/downloadYtdlp.js",
"postinstall": "node -e \"process.env.INIT_CWD !== process.cwd() && require('child_process').execSync('npm run postdownload', { stdio: 'inherit' });\"",
"prepare": "husky",
"docs:dev": "rspress dev",
"docs:build": "rspress build",
"docs:preview": "rspress preview"
},
"keywords": [
"yt-dlp",
"youtube",
"video",
"download",
"wrapper",
"typescript",
"ytdlp",
"youtube downloader",
"ytdlp-nodejs",
"youtube-thumbnails",
"typescript",
"nodejs",
"youtube video",
"video",
"video downloader"
],
"author": "Rashed Iqbal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iqbal-rashed/ytdlp-nodejs.git"
},
"bugs": {
"url": "https://github.com/iqbal-rashed/ytdlp-nodejs/issues"
},
"homepage": "https://iqbal-rashed.github.io/ytdlp-nodejs",
"devDependencies": {
"@eslint/js": "^9.23.0",
"@rspress/plugin-shiki": "^1.47.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.11",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rspress": "^1.47.0",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.0.0"
}
}