mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-26 23:55:53 +00:00
f2036236f6
* building towards ios calls * minor ios changes * linting * RPC calls with webview * tidy up * more types * ios: webrtc types, call works * remove comment * prettier * add prettier to build Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
26 lines
591 B
JSON
26 lines
591 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",
|
|
"build": "prettier --write --ignore-unknown . && tsc && ./copy"
|
|
},
|
|
"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"
|
|
}
|
|
}
|