mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
f78ec3584f
* mobile: webrtc calls in webview (typescript WIP) * typsecript compiles * fix error messages * TS works in chrome * include ICE candidates into offer/answer, report connection state changes to host, end call on disconnection * refactor, readme for .js file
25 lines
522 B
JSON
25 lines
522 B
JSON
{
|
|
"name": "simplex-chat-webrtc",
|
|
"version": "0.0.1",
|
|
"description": "WebRTC call in browser and webview",
|
|
"main": "dist/call.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"SimpleX",
|
|
"WebRTC"
|
|
],
|
|
"author": "",
|
|
"license": "AGPL-3.0-or-later",
|
|
"devDependencies": {
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.4.1",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|