-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "ringcentral-softphone",
"version": "1.1.4",
"homepage": "https://github.com/ringcentral/ringcentral-softphone-ts",
"license": "MIT",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"types": "./dist/esm/*.d.ts",
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.js"
}
},
"scripts": {
"in": "rm -rf *.wav && tsx -r dotenv-override-true/config demos/inbound-call.ts",
"out": "rm -rf *.wav && tsx -r dotenv-override-true/config demos/outbound-call.ts",
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"prepublishOnly": "yarn build",
"postpublish": "rm -rf dist"
},
"dependencies": {
"@evan/opus": "^1.0.3",
"wait-for-async": "^0.7.10",
"werift-rtp": "^0.8.4"
},
"devDependencies": {
"@types/node": "^22.12.0",
"dotenv-override-true": "^6.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"yarn-upgrade-all": "^0.7.4"
}
}