mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 01:02:18 +00:00
* * Fix an issues in SIP.js where the ACK and BYE replies didn't go to the correct uri * * Implemented outgoing SIP MESSAGE sending * Adding voice mail check * Adding a lock for a bticino doorbell * Cleanup dependencies, code in sip, bticino plugins * Cleanup dependencies, code in sip, bticino plugins * Clear stale devices from our map and clear the voicemail check * Do not require register() for a SIP call * Narrow down the event matching to deletes of devices * Use releaseDevice to clean up stale entries * Fix uuid version * Attempt to make two way audio work * Attempt to make two way audio work - fine tuning * Enable incoming doorbell events * SipCall was never a "sip call" but more like a manager SipSession was more the "sip call" * * Rename sip registered session to persistent sip manager * Allow handling of call pickup in homekit (hopefully!) * * use the consoles from the camera object * * use the consoles from the camera object * * Fix the retry timer * * Added webhook url * * parse record route correctly * * Add gruu and use a custom fork of sip.js which supports keepAlive SIP clients (and dropped Websocket) * use cross-env in package.json * Added webhook urls for faster handling of events * Added videoclips * plugins/sip 0.0.6 * plugins/bticino 0.0.7
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "@scrypted/sip",
|
|
"version": "0.0.6",
|
|
"scripts": {
|
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
"build": "scrypted-webpack",
|
|
"prepublishOnly": "cross-env NODE_ENV=production scrypted-webpack",
|
|
"prescrypted-vscode-launch": "scrypted-webpack",
|
|
"scrypted-vscode-launch": "scrypted-deploy-debug",
|
|
"scrypted-deploy-debug": "scrypted-deploy-debug",
|
|
"scrypted-debug": "scrypted-debug",
|
|
"scrypted-deploy": "scrypted-deploy",
|
|
"scrypted-readme": "scrypted-readme",
|
|
"scrypted-package-json": "scrypted-package-json"
|
|
},
|
|
"keywords": [
|
|
"scrypted",
|
|
"plugin",
|
|
"sip"
|
|
],
|
|
"scrypted": {
|
|
"name": "SIP Plugin",
|
|
"type": "DeviceProvider",
|
|
"interfaces": [
|
|
"DeviceProvider",
|
|
"DeviceCreator"
|
|
],
|
|
"pluginDependencies": [
|
|
"@scrypted/prebuffer-mixin",
|
|
"@scrypted/pam-diff",
|
|
"@scrypted/snapshot"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@homebridge/camera-utils": "^2.0.4",
|
|
"@slyoldfox/sip": "^0.0.6-1",
|
|
"sdp": "^3.0.3",
|
|
"stun": "^2.1.0",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@scrypted/common": "file:../../common",
|
|
"@scrypted/sdk": "file:../../sdk",
|
|
"@types/node": "^16.9.6",
|
|
"@types/uuid": "^8.3.4",
|
|
"cross-env": "^7.0.3"
|
|
}
|
|
}
|