81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"name": "@vidbee/cli",
|
|
"version": "0.1.0",
|
|
"description": "VidBee CLI — standalone yt-dlp wrapper that talks to the shared VidBee TaskQueue. Works against a local Desktop, a remote API, or fully in-process for CI / Docker / agents.",
|
|
"homepage": "https://github.com/nexmoe/vidbee/tree/main/apps/cli#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/nexmoe/vidbee/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nexmoe/vidbee.git",
|
|
"directory": "apps/cli"
|
|
},
|
|
"license": "MIT",
|
|
"author": "VidBee Authors",
|
|
"type": "module",
|
|
"bin": {
|
|
"vidbee": "./dist/bin/vidbee.mjs"
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./parser": "./src/parser/index.ts",
|
|
"./envelope": "./src/envelope/index.ts"
|
|
},
|
|
"publishConfig": {
|
|
"exports": {
|
|
".": "./dist/index.mjs"
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"keywords": [
|
|
"vidbee",
|
|
"yt-dlp",
|
|
"video",
|
|
"video-downloader",
|
|
"downloader",
|
|
"cli",
|
|
"agent",
|
|
"automation"
|
|
],
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"build": "node scripts/build.mjs",
|
|
"verify-dist": "node -e \"const fs=require('node:fs');for(const f of ['dist/index.mjs','dist/bin/vidbee.mjs']){if(!fs.existsSync(f)){console.error('missing build artifact: '+f);process.exit(1)}}\"",
|
|
"prepublishOnly": "pnpm run test && pnpm run build && pnpm run verify-dist"
|
|
},
|
|
"dependencies": {
|
|
"yt-dlp-wrap-plus": "^2.3.20"
|
|
},
|
|
"optionalDependencies": {
|
|
"better-sqlite3": "^12.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.18.6",
|
|
"@vidbee/db": "workspace:*",
|
|
"@vidbee/downloader-core": "workspace:*",
|
|
"@vidbee/task-queue": "workspace:*",
|
|
"esbuild": "^0.25.0",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|