@lzwme/m3u8-dl
Version:
A free, open-source, and powerful m3u8 video batch downloader with multi-threaded downloading, play-while-downloading, WebUI management, video parsing, and more.
105 lines (104 loc) • 3.41 kB
JSON
{
"name": "@lzwme/m3u8-dl",
"version": "1.9.1",
"description": "A free, open-source, and powerful m3u8 video batch downloader with multi-threaded downloading, play-while-downloading, WebUI management, video parsing, and more.",
"main": "cjs/index.js",
"types": "cjs/index.d.ts",
"license": "MIT",
"homepage": "https://m3u8-downloader.lzw.me/portal",
"repository": {
"type": "git",
"url": "git+https://github.com/lzwme/m3u8-dl.git"
},
"author": {
"name": "renxia",
"email": "lzwy0820@qq.com",
"url": "https://lzw.me"
},
"scripts": {
"prepare": "husky || true",
"dev": "concurrently \"pnpm dev:sdk\" \"pnpm dev:server\" \"pnpm dev:frontend\"",
"dev:sdk": "tsc -p tsconfig.cjs.json --watch",
"dev:frontend": "pnpm -F @lzwme/m3u8-dl-frontend dev",
"dev:app": "pnpm -F @lzwme/m3u8-dl-app dev",
"dev:server": "nodemon bin/m3u8dl.js server --debug",
"lint:flh": "flh --eslint --tscheck --prettier",
"lint": "biome lint",
"lint:all": "biome lint && pnpm -F @lzwme/m3u8-capture lint && pnpm -F @lzwme/m3u8-dl-frontend lint",
"format": "biome format --write",
"fix": "biome check --fix",
"fix:all": "biome check --fix && pnpm -F @lzwme/m3u8-capture fix && pnpm -F @lzwme/m3u8-dl-frontend fix && pnpm -F @lzwme/m3u8-dl-portal fix",
"build": "npm run clean && npm run build:cjs && npm run build:frontend && npm run build:capture",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:frontend": "pnpm -F @lzwme/m3u8-dl-frontend build",
"build:capture": "pnpm -F @lzwme/m3u8-capture build",
"download-cdn": "node scripts/download-cdn-resources.js",
"doc": "pnpm doc:api && pnpm doc:portal",
"doc:api": "typedoc src --tsconfig tsconfig.module.json",
"doc:portal": "pnpm -F @lzwme/m3u8-dl-portal build",
"version": "standard-version",
"dist": "npm run build",
"release": "npm run dist && npm run version",
"clean": "flh rm -f ./cjs ./esm ./docs ./client/assets",
"test": "npm run lint:all"
},
"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": {
"@biomejs/biome": "2.3.11",
"@eslint/js": "^9.39.2",
"@lzwme/fed-lint-helper": "^2.6.6",
"@types/express": "^5.0.6",
"@types/global-agent": "^3.0.0",
"@types/m3u8-parser": "^7.2.6",
"@types/node": "^25.0.8",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"husky": "^9.1.7",
"nodemon": "^3.1.11",
"prettier": "^3.8.0",
"standard-version": "^9.5.0",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"ws": "^8.19.0"
},
"dependencies": {
"@lzwme/fe-utils": "^1.9.2",
"commander": "^14.0.2",
"console-log-colors": "^0.5.0",
"enquirer": "^2.4.1",
"global-agent": "^3.0.0",
"m3u8-parser": "^7.2.0"
},
"files": [
"cjs",
"client/",
"!client/ariang",
"!client/local",
"!cjs/type.js",
"!cjs/cli.d.ts",
"bin"
]
}