Files
dvc-cli/package.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2025-11-08 19:41:20 +03:00
{
2025-11-09 01:28:42 +03:00
"name": "@grom13/dvc-cli",
2025-11-09 13:24:10 +03:00
"version": "0.1.3",
2025-11-08 19:41:20 +03:00
"description": "Fast DASH video converter with NVENC acceleration and thumbnail sprites",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2025-11-09 01:28:42 +03:00
"bin": {
2025-11-09 13:24:10 +03:00
"dvc-cli": "./bin/cli.js"
2025-11-09 01:28:42 +03:00
},
2025-11-08 19:41:20 +03:00
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
2025-11-09 01:28:42 +03:00
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
2025-11-08 19:41:20 +03:00
"scripts": {
2025-11-09 01:28:42 +03:00
"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",
"dev": "bun run src/cli.ts",
"test": "bun run src/cli.ts"
2025-11-08 19:41:20 +03:00
},
"keywords": [
"dash",
"video",
"converter",
"ffmpeg",
"nvenc",
2025-11-09 01:28:42 +03:00
"streaming",
"cli",
"video-processing",
"adaptive-streaming",
"thumbnails"
2025-11-08 19:41:20 +03:00
],
2025-11-09 01:28:42 +03:00
"author": "grom13",
2025-11-08 19:41:20 +03:00
"license": "MIT",
2025-11-09 01:28:42 +03:00
"repository": {
"type": "git",
2025-11-09 13:24:10 +03:00
"url": "https://gromlab.ru/gromov/dvc-cli.git"
2025-11-09 01:28:42 +03:00
},
"bugs": {
2025-11-09 13:24:10 +03:00
"url": "https://gromlab.ru/gromov/dvc-cli/issues"
2025-11-09 01:28:42 +03:00
},
2025-11-09 13:24:10 +03:00
"homepage": "https://gromlab.ru/gromov/dvc-cli#readme",
2025-11-09 01:28:42 +03:00
"engines": {
"node": ">=18.0.0"
},
2025-11-08 19:41:20 +03:00
"devDependencies": {
"@types/bun": "^1.3.2",
2025-11-09 01:28:42 +03:00
"@types/cli-progress": "^3.11.6",
2025-11-08 19:41:20 +03:00
"typescript": "^5.3.3"
},
"dependencies": {
"cli-progress": "^3.12.0"
}
}