UNPKG

electron-window-rtc

Version:

Exchange media streams between Electron windows with WebRTC.

55 lines (54 loc) 1.34 kB
{ "name": "electron-window-rtc", "version": "1.1.3", "description": "Exchange media streams between Electron windows with WebRTC.", "keywords": [ "electron", "webrtc", "window", "browser-window", "media", "stream", "communication", "video", "audio", "ipc", "interprocess-communication" ], "main": "./dist/electron-window-rtc-main.mjs", "types": "./dist/main/index.d.ts", "author": "Benoît Lahoz <info@benoitlahoz.io>", "repository": { "type": "git", "url": "git+https://github.com/benoitlahoz/electron-window-rtc.git" }, "license": "MIT", "private": false, "exports": { ".": { "types": "./dist/main/index.d.ts", "import": "./dist/electron-window-rtc-main.mjs" }, "./renderer": { "types": "./dist/renderer/index.d.ts", "import": "./dist/electron-window-rtc-renderer.mjs" } }, "files": [ "dist/**/*", "package.json", "README.md", "LICENSE" ], "scripts": { "build:main": "vite build --config vite.config.main.mts", "build:renderer": "vite build --config vite.config.renderer.mts", "build": "rimraf ./dist && yarn build:main && yarn build:renderer" }, "devDependencies": { "electron": "^34.2.0", "rimraf": "^6.0.1", "vite": "^6.1.0", "vite-plugin-dts": "^4.5.0" } }