Files
create-vod/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "@gromlab/create-vod",
2026-01-20 00:28:34 +03:00
"author": "Gromov Sergei",
2026-01-22 10:44:41 +03:00
"version": "0.1.11",
2026-01-20 00:28:34 +03:00
"description": "DASH/HLS video converter with hardware acceleration (NVENC/QSV/AMF/VAAPI), thumbnails and poster generation",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"create-vod": "./bin/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:lib && npm run build:cli",
"build:lib": "bun build src/index.ts --outdir dist --target node && tsc --emitDeclarationOnly",
"build:cli": "bun build src/cli.ts --outfile bin/cli.js --target node --minify",
"prepublishOnly": "npm run build",
"create-vod": "bun run src/cli.ts",
"test": "bun run src/cli.ts"
},
"keywords": [
"dash",
"video",
"converter",
"ffmpeg",
"nvenc",
"streaming",
"cli",
"video-processing",
"adaptive-streaming",
"thumbnails"
],
"license": "MIT",
"repository": {
"type": "git",
2026-01-20 00:28:34 +03:00
"url": "https://gromlab.ru/vod/create-vod.git"
},
"bugs": {
2026-01-20 00:28:34 +03:00
"url": "https://gromlab.ru/vod/create-vod/issues"
},
2026-01-20 00:28:34 +03:00
"homepage": "https://gromlab.ru/vod/create-vod#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.2",
"@types/cli-progress": "^3.11.6",
"typescript": "^5.3.3"
},
"dependencies": {
"cli-progress": "^3.12.0"
}
2026-01-20 01:32:59 +03:00
}