UNPKG

react-peer-chat

Version:

An easy to use react component for impleting peer-to-peer chatting.

57 lines 1.35 kB
{ "name": "react-peer-chat", "version": "0.8.2", "description": "An easy to use react component for impleting peer-to-peer chatting.", "license": "MIT", "author": "Sahil Aggarwal <aggarwalsahil2004@gmail.com>", "contributors": [], "homepage": "https://github.com/SahilAggarwal2004/react-peer-chat#readme", "repository": { "type": "git", "url": "git+https://github.com/SahilAggarwal2004/react-peer-chat.git" }, "bugs": { "url": "https://github.com/SahilAggarwal2004/react-peer-chat/issues" }, "type": "module", "exports": { ".": "./dist/index.js", "./icons": "./dist/icons.js", "./types": "./dist/types.js" }, "main": "dist/index.js", "types": "dist/index.d.ts", "dependencies": { "peerjs": "^1.5.4" }, "devDependencies": { "@types/react": "^19.0.10", "tsup": "^8.4.0", "typescript": "^5.8.2" }, "peerDependencies": { "react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "keywords": [ "react", "chat", "component", "peer", "peerjs", "p2p", "peer-to-peer", "webrtc", "react-peer-chat", "typescript", "p2p-chat", "text-chat", "voice-chat", "audio-chat" ], "scripts": { "build": "pnpm i && pnpm run compile", "compile": "tsup", "dev": "tsup --watch" } }