Files
VoiceRSSSummary/package.json

40 lines
1.1 KiB
JSON

{
"name": "podcast-generator",
"version": "1.0.0",
"scripts": {
"start": "bun run build:frontend && bun run server.ts",
"admin": "bun run build:admin && bun run admin-server.ts",
"build:frontend": "cd frontend && bun vite build",
"build:admin": "cd admin-panel && bun install && bun run build",
"dev:frontend": "cd frontend && bun vite dev",
"dev:admin": "cd admin-panel && bun vite dev"
},
"dependencies": {
"@aws-sdk/client-polly": "^3.823.0",
"@hono/node-server": "^1.14.3",
"@types/xml2js": "^0.4.14",
"ffmpeg-static": "^5.2.0",
"hono": "^4.7.11",
"openai": "^4.104.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2",
"rss-parser": "^3.13.0",
"xml2js": "^0.6.2"
},
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.15.29",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.5.1",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"private": true,
"peerDependencies": {
"typescript": "^5"
}
}