vidscript
Version:
AI-powered CLI tool that transforms video content into intelligent, structured notes and scripts
84 lines (83 loc) • 2.11 kB
JSON
{
"name": "vidscript",
"version": "1.0.6",
"description": "AI-powered CLI tool that transforms video content into intelligent, structured notes and scripts",
"main": "dist/index.js",
"type": "module",
"bin": {
"vidscript": "./dist/src/index.js"
},
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,js,json}\"",
"prepublishOnly": "bun run build"
},
"keywords": [
"video",
"transcription",
"notes",
"ai",
"summarization",
"script",
"content",
"cli"
],
"author": "Enoch Kambale",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@pinecone-database/pinecone": "^5.1.0",
"@xenova/transformers": "^2.8.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"cli-spinners": "^2.9.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figures": "^5.0.0",
"fluent-ffmpeg": "^2.1.2",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.12",
"log-update": "^6.0.0",
"marked": "^15.0.7",
"openai": "^4.20.0",
"ora": "^7.0.1",
"pdf-lib": "^1.17.1",
"puppeteer": "^24.3.0",
"terminal-link": "^3.0.0",
"update-notifier": "^7.0.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/gradient-string": "^1.1.5",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.0",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camballe/vidscript.git"
},
"files": [
"dist"
]
}