2022-05-02 09:48:39 -05:00
|
|
|
{
|
|
|
|
"name": "simplex-chat-webrtc",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "WebRTC call in browser and webview",
|
|
|
|
"main": "dist/call.js",
|
|
|
|
"scripts": {
|
2022-05-04 17:07:26 -05:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
|
|
"build": "prettier --write --ignore-unknown . && tsc && ./copy"
|
2022-05-02 09:48:39 -05:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|