{ "name": "project-noctivus", "version": "1.0.0", "description": "An orchestrator for creating audiobooks from text.", "type": "module", "main": "dist/orchestrator.js", "scripts": { "start": "ts-node src/orchestrator.ts", "build": "tsc -p tsconfig.json", "start:prod": "node dist/orchestrator.js", "lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings=0", "format": "prettier --write ." }, "dependencies": { "dotenv": "^16.4.5", "ffmpeg-static": "^5.2.0", "ffprobe-static": "^3.1.0", "googleapis": "^140.0.0", "js-yaml": "^4.1.0", "openai": "^4.47.1", "p-limit": "^6.1.0", "zod": "^3.23.8" }, "devDependencies": { "@types/js-yaml": "^4.0.9", "@types/node": "^20.12.12", "eslint": "^9.7.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "prettier": "^3.3.3", "ts-node": "^10.9.2", "typescript": "^5.4.5" }, "engines": { "node": ">=18.18" } }