mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 20:45:49 +00:00
* ios: native WebRTC * add video showing * make async function better working with main thread * wrapped code in main actor, just in case * small change * a little better * enable relay * removed unused code * allow switching calls * testing * enable encryption * testing more * another test * one more test * fix remote unencrypted video * deleted unused code related to PixelBuffer * added MediaEncryption playground * better playground * better playground * fixes * use new encryption api * media encryption works * small changes * added lib dependency * use commit reference for lib instead of version * video format, PIP size * remove sample.js --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@simplex-chat/webrtc",
|
|
"version": "0.2.3",
|
|
"description": "WebRTC call in browser and webview for SimpleX Chat clients",
|
|
"main": "dist/call.js",
|
|
"types": "dist/call.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "prettier --write --ignore-unknown . && tsc && ./copy"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/simplex-chat/simplex-chat.git"
|
|
},
|
|
"keywords": [
|
|
"SimpleX",
|
|
"WebRTC"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"homepage": "https://github.com/simplex-chat/simplex-chat/packages/simplex-chat-webrtc#readme",
|
|
"author": "SimpleX Chat",
|
|
"license": "AGPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"@types/lz-string": "^1.3.34",
|
|
"husky": "^7.0.4",
|
|
"isomorphic-webcrypto": "^2.3.8",
|
|
"lint-staged": "^12.4.1",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
},
|
|
"dependencies": {
|
|
"lz-string": "^1.4.4"
|
|
}
|
|
} |