- 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
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "broadcast-panel",
|
|
"version": "0.1.0",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"e2e:dify": "node e2e/dify-plugin-playwright.mjs --ws ws://localhost:3003 --url http://localhost:5176 --out /tmp/dify-shot.png"
|
|
},
|
|
"dependencies": {
|
|
"@livekit/components-react": "^2.9.15",
|
|
"@livekit/components-styles": "^1.1.6",
|
|
"avanza-ui": "file:../avanza-ui",
|
|
"livekit-client": "^2.15.14",
|
|
"node-fetch": "^2.7.0",
|
|
"puppeteer": "^24.30.0",
|
|
"puppeteer-core": "^20.9.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-icons": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"autoprefixer": "^10.4.14",
|
|
"postcss": "^8.4.24",
|
|
"tailwindcss": "^4.1.0",
|
|
"typescript": "^5.0.2",
|
|
"vite": "^7.2.0",
|
|
"playwright": "^1.51.0"
|
|
},
|
|
"vitest": {
|
|
"test": {
|
|
"environment": "jsdom",
|
|
"globals": true,
|
|
"setupFiles": "./vitest.setup.ts"
|
|
}
|
|
}
|
|
}
|