aethercall
Version:
A scalable WebRTC video calling API built with Node.js and OpenVidu
66 lines (65 loc) • 1.51 kB
JSON
{
"name": "aethercall",
"version": "1.0.1",
"description": "A scalable WebRTC video calling API built with Node.js and OpenVidu",
"main": "index.js",
"bin": {
"aethercall-setup": "./scripts/setup.js"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"setup": "node scripts/setup.js",
"build": "echo 'No build step required'",
"postinstall": "echo '\n🎥 AetherCall installed! Run \"npm run setup\" for configuration help.\n'"
},
"keywords": [
"webrtc",
"video-calling",
"openvidu",
"video-conference",
"real-time-communication",
"api",
"nodejs",
"video-chat",
"screen-sharing",
"recording"
],
"author": "RayenMiri <your-email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RayenMiri/AetherCall.git"
},
"bugs": {
"url": "https://github.com/RayenMiri/AetherCall/issues"
},
"homepage": "https://github.com/RayenMiri/AetherCall#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"dotenv": "^16.3.1",
"joi": "^17.11.0",
"openvidu-node-client": "^2.29.0",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
},
"files": [
"index.js",
"src/",
"examples/",
"scripts/",
"README.md",
"LICENSE",
".env.example"
]
}