Cesar Mendivil 8b458a3ddf feat: add initial LiveKit Meet integration with utility scripts, configs, and core components
- Add Next.js app structure with base configs, linting, and formatting
- Implement LiveKit Meet page, types, and utility functions
- Add Docker, Compose, and deployment scripts for backend and token server
- Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers
- Include CSS modules and global styles for UI
- Add postMessage and studio integration utilities
- Update package.json with dependencies and scripts for development and testing
2025-11-20 12:50:38 -07:00

24 lines
553 B
JSON

{
"name": "avanzacast-puppeteer-runner",
"version": "0.1.0",
"description": "Runner E2E con Puppeteer conectado a browserless para validar flujo Broadcast->Studio",
"main": "index.js",
"scripts": {
"e2e": "node index.js",
"build": "tsc",
"start": "node dist/index.js"
},
"author": "AvanzaCast",
"license": "MIT",
"dependencies": {
"puppeteer": "^20.9.0",
"axios": "^1.4.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"@types/node": "^18.0.0"
}
}