forked from emilylange/matrix-sip-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"type": "module",
"name": "matrix-sip-bridge",
"version": "0.1.0",
"description": "A bridge between Matrix.org and SIP (VoIP)",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/IndeedNotJames/matrix-sip-bridge.git"
},
"keywords": [
"matrix.org",
"matrix",
"voip",
"sip",
"bridge"
],
"engines": {
"node": ">=14.0.0"
},
"license": "AGPL-3.0",
"scripts": {
"start": "node --experimental-specifier-resolution=node dist/index.js",
"eslint": "eslint src/",
"eslint:fix": "eslint --fix src/",
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf ./dist"
},
"dependencies": {
"dotenv": "^10.0.0",
"matrix-js-sdk": "^15.3.0",
"sip.js": "^0.20.0",
"wrtc": "^0.4.7",
"ws": "^8.4.0"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.5.4"
}
}