2022-05-02 09:48:39 -05:00
|
|
|
{
|
2022-05-17 02:37:00 -05:00
|
|
|
"name": "@simplex-chat/webrtc",
|
2023-02-05 15:57:50 -06:00
|
|
|
"version": "0.2.3",
|
2022-05-17 02:37:00 -05:00
|
|
|
"description": "WebRTC call in browser and webview for SimpleX Chat clients",
|
2022-05-02 09:48:39 -05:00
|
|
|
"main": "dist/call.js",
|
2022-05-17 02:37:00 -05:00
|
|
|
"types": "dist/call.d.ts",
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-05-02 09:48:39 -05:00
|
|
|
"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
|
|
|
},
|
2022-05-17 02:37:00 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/simplex-chat/simplex-chat.git"
|
|
|
|
},
|
2022-05-02 09:48:39 -05:00
|
|
|
"keywords": [
|
|
|
|
"SimpleX",
|
|
|
|
"WebRTC"
|
|
|
|
],
|
2022-05-17 02:37:00 -05:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/simplex-chat/simplex-chat/packages/simplex-chat-webrtc#readme",
|
|
|
|
"author": "SimpleX Chat",
|
2022-05-02 09:48:39 -05:00
|
|
|
"license": "AGPL-3.0-or-later",
|
|
|
|
"devDependencies": {
|
2022-05-16 13:27:58 -05:00
|
|
|
"@types/lz-string": "^1.3.34",
|
2022-05-02 09:48:39 -05:00
|
|
|
"husky": "^7.0.4",
|
2023-03-02 07:17:01 -06:00
|
|
|
"isomorphic-webcrypto": "^2.3.8",
|
2022-05-02 09:48:39 -05:00
|
|
|
"lint-staged": "^12.4.1",
|
|
|
|
"prettier": "^2.6.2",
|
|
|
|
"typescript": "^4.6.4"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*": "prettier --write --ignore-unknown"
|
2022-05-16 13:27:58 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lz-string": "^1.4.4"
|
2022-05-02 09:48:39 -05:00
|
|
|
}
|
2023-10-22 12:47:27 -05:00
|
|
|
}
|