@yuchida-tamu/podcast-gen
Version:
AI-Powered Monologue Podcast Generator
60 lines (59 loc) • 1.35 kB
JSON
{
"name": "@yuchida-tamu/podcast-gen",
"version": "1.0.7",
"description": "AI-Powered Monologue Podcast Generator",
"main": "dist/cli.js",
"type": "module",
"bin": {
"podcast-gen": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "echo 'Linting not implemented yet'",
"lint:fix": "echo 'Lint fix not implemented yet'",
"prepublishOnly": "npm run build && chmod +x dist/cli.js"
},
"keywords": [
"podcast",
"ai",
"cli",
"monologue",
"audio",
"tts",
"openai",
"generator"
],
"author": "Yuta Uchida <yuchida4dev@gmail.com>",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.56.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"openai": "^5.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.13",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}