mono/packages/media/ref/package.json

53 lines
1.1 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",
"watch": "tsc --watch",
"start": "node dist/cli.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",
"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",
"vitest": "^3.0.8"
}
}