mono/packages/media/ref/yt-dlp/package.json

59 lines
1.3 KiB
JSON

{
"name": "yt-dlp-wrapper",
"version": "1.0.0",
"description": "TypeScript wrapper for yt-dlp with CLI interface",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yt-dlp-wrapper": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"build:webpack": "webpack --mode production",
"watch": "tsc --watch",
"start": "node dist/cli.js",
"start:webpack": "node dist/cli-bundle.js",
"dev": "ts-node --esm src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [
"yt-dlp",
"video",
"downloader",
"cli"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^22.13.10",
"@types/yargs": "^17.0.33",
"puppeteer": "^24.4.0",
"ts-node": "^10.9.2",
"tslog": "^4.9.3",
"typescript": "^5.8.2",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.0.8",
"@vitest/ui": "^3.0.8",
"ts-loader": "^9.5.2",
"vitest": "^3.0.8",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}