- 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
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "avanza-ui",
|
|
"version": "1.0.0",
|
|
"description": "Biblioteca de componentes React para AvanzaCast basada en StreamYard y unificada con ui-components",
|
|
"main": "src/index.ts",
|
|
"module": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "rollup -c -w",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"components",
|
|
"ui",
|
|
"avanzacast",
|
|
"studio"
|
|
],
|
|
"author": "AvanzaCast Team",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"peerDependencies": {
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"rollup": "^4.18.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
"rollup-plugin-postcss": "^4.0.2",
|
|
"tslib": "^2.6.3",
|
|
"typescript": "^5.5.3",
|
|
"vitest": "^1.6.0"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.1"
|
|
}
|
|
}
|