UNPKG

@lzwme/m3u8-dl

Version:

Batch download of m3u8 files and convert to mp4

75 lines (74 loc) 1.92 kB
{ "name": "@lzwme/m3u8-dl", "version": "0.0.9", "description": "Batch download of m3u8 files and convert to mp4", "main": "cjs/index.js", "types": "cjs/index.d.ts", "license": "MIT", "repository": "https://github.com/lzwme/m3u8-dl.git", "author": { "name": "renxia", "email": "lzwy0820@qq.com", "url": "https://lzw.me" }, "scripts": { "prepare": "husky || true", "dev": "npm run watch", "watch": "npm run build -- -- -w", "lint": "flh --eslint --tscheck --prettier", "build": "npm run clean && npm run build:cjs", "build:cjs": "tsc -p tsconfig.cjs.json", "doc": "typedoc src/ --exclude **/*.spec.ts --out docs --tsconfig tsconfig.module.json", "version": "standard-version", "dist": "npm run build", "release": "npm run dist && npm run version", "clean": "flh rm -f ./cjs ./esm ./docs", "test": "npm run lint" }, "bin": { "m3u8dl": "bin/m3u8dl.js" }, "keywords": [ "m3u8-download", "m3u8", "mp4", "download", "ffmpeg" ], "engines": { "node": ">=14.18" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.com" }, "devDependencies": { "@eslint/js": "^9.8.0", "@lzwme/fed-lint-helper": "^2.6.2", "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^9.8.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "husky": "^9.1.4", "prettier": "^3.3.3", "standard-version": "^9.5.0", "typescript": "^5.5.4", "typescript-eslint": "^7.18.0" }, "dependencies": { "@lzwme/fe-utils": "^1.7.5", "commander": "^12.1.0", "console-log-colors": "^0.5.0", "enquirer": "^2.4.1", "m3u8-parser": "^7.1.0" }, "files": [ "cjs", "!cjs/type.js", "!cjs/cli.d.ts", "global.d.ts", "bin" ] }