-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
60 lines (60 loc) · 2.02 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ringcentral-web-phone",
"version": "2.0.0-beta.7",
"repository": {
"type": "git",
"url": "https://github.com/ringcentral/ringcentral-web-phone.git"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "tsc --noEmit --target ESNext --moduleResolution NodeNext --module NodeNext ./src/*.ts && eslint --fix '**/*.{ts,tsx,js,jsx}' && prettier --write . && sort-package-json",
"prepublishOnly": "yarn lint && yarn test && tsc src/index.ts --declaration --outDir . --target ESNext --moduleResolution NodeNext --module NodeNext",
"postpublish": "rm -rf call-session rc-message sip-message event-emitter.* index.* utils.* sip-client.* types.* device-manager.*",
"serve": "rm -rf .parcel-cache && parcel test/index.html --no-hmr",
"test": "NODE_OPTIONS=--require=dotenv-override-true/config playwright test --workers=1"
},
"dependencies": {
"blueimp-md5": "^2.19.0",
"sdp-transform": "^2.14.2",
"uuid": "^10.0.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@types/blueimp-md5": "^2.18.2",
"@types/node": "^22.8.1",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"buffer": "^6.0.3",
"dotenv-override-true": "^6.2.2",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"events": "^3.3.0",
"manate": "^0.9.8",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"sort-package-json": "^2.10.1",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"tsx": "^4.19.1",
"ttpt": "^0.12.6",
"typescript": "^5.6.3",
"wait-for-async": "^0.7.0",
"yarn-upgrade-all": "^0.7.4"
},
"yarn-upgrade-all": {
"ignore": [
"eslint"
]
}
}