UNPKG

yt-dlp-typescript-wrapper

Version:

TypeScript OOP wrapper for youtube-dl-exec with advanced YouTube Shorts support

63 lines (62 loc) 1.37 kB
{ "name": "yt-dlp-typescript-wrapper", "version": "1.0.2", "description": "TypeScript OOP wrapper for youtube-dl-exec with advanced YouTube Shorts support", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "prepare": "npm run build", "test-shorts": "ts-node test-shorts.ts", "example": "ts-node src/main.ts" }, "keywords": [ "youtube", "downloader", "yt-dlp", "shorts", "typescript", "oop", "video", "audio" ], "author": "Nick", "license": "MIT", "dependencies": { "youtube-dl-exec": "^3.0.23" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.0", "typescript": "^5.0.0" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "publishConfig": { "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/nick/yt-dlp-wrapper.git" }, "engines": { "node": ">=16.0.0" } }