@webrtc2/client
Version:
WebRTC2 Client - React Native, Web & Electron WebRTC hooks and components for cross-platform real-time video calls, audio communication, and screen sharing
90 lines • 2.3 kB
JSON
{
"name": "@webrtc2/client",
"version": "1.0.0",
"description": "WebRTC2 Client - React Native, Web & Electron WebRTC hooks and components for cross-platform real-time video calls, audio communication, and screen sharing",
"keywords": [
"webrtc",
"react",
"react-native",
"electron",
"hooks",
"real-time",
"communication",
"video-calls",
"audio-calls",
"screen-sharing",
"peer-to-peer",
"cross-platform",
"typescript",
"rtc",
"streaming",
"media",
"ice",
"stun",
"turn",
"signaling",
"webrtc-react",
"react-webrtc",
"webrtc-hooks",
"video-chat",
"voice-chat",
"webrtc-client",
"rtc-peer-connection",
"webrtc-components"
],
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"test": "jest",
"clean": "rm -rf dist"
},
"dependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"typescript": "^5.0.0",
"tsup": "^8.0.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/reforms/webrtc2.git",
"directory": "monorepo@npm/packages/client"
},
"homepage": "https://webrtc2.com/packages/client",
"bugs": {
"url": "https://github.com/reforms/webrtc2/issues"
},
"author": {
"name": "WebRTC2 Team",
"email": "hello@webrtc2.com",
"url": "https://webrtc2.com"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
}
}