Carlos Santos fd905286a6 typings: add E2EE configuration interface to MeetRoomConfig
frontend: add End-to-End Encryption (E2EE)

- Updated meeting lobby and room wizard components to handle E2EE settings.
- Added E2EE configuration options in the room wizard and lobby services.
- Implemented validation for E2EE key input in participant forms.
- Enhanced UI to reflect E2EE restrictions on recording and streaming.
- Added animations for E2EE warning and info sections.

backend: Added E2EE configuration and middleware

backend: Added e2ee configuration property to openapi

Enables E2EE functionality

Configures the application to support end-to-end encryption (E2EE).

Copies the necessary worker script to the assets folder.

Passes the E2EE key to the meeting component.

Adds a script to remove node_modules and dist folder.

frontend: Add E2EE UI tests and configuration options

webcomponent: Ensure cleanup of test environment after moderation tests

frontend: Update E2EE description and restrictions

webcomponent: Enhance E2EE UI tests by adding participant interactions and verifying visibility with correct keys

backend: Updated start recording example response
2025-11-05 17:11:30 +01:00

53 lines
1.7 KiB
JSON

{
"name": "openvidu-meet-webcomponent",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test:unit": "jest --forceExit --testPathPattern \"tests/unit\" --ci",
"test:e2e": "playwright test",
"test:e2e-core": "playwright test tests/e2e/core/",
"test:e2e-core-room": "playwright test tests/e2e/core/room.test.ts",
"test:e2e-core-events": "playwright test tests/e2e/core/events.test.ts",
"test:e2e-core-webhooks": "playwright test tests/e2e/core/webhooks.test.ts",
"test:e2e-ui-features": "playwright test tests/e2e/ui-feature-config.test.ts",
"test:e2e-e2ee-ui": "playwright test tests/e2e/e2ee-ui.test.ts",
"test:e2e-recording-access": "playwright test tests/e2e/recording-access.test.ts",
"lint": "eslint 'src/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"description": "",
"dependencies": {
"@openvidu-meet/typings": "workspace:*"
},
"devDependencies": {
"@playwright/test": "1.53.2",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"pixelmatch": "7.1.0",
"playwright": "1.53.2",
"pngjs": "7.0.0",
"rollup": "4.34.8",
"rollup-plugin-postcss": "4.0.2",
"ts-jest": "29.2.5",
"ts-jest-resolver": "2.0.1",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.3"
}
}