-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
61
62
63
{
"name": "ringcentral-web-phone",
"version": "2.0.8",
"repository": {
"type": "git",
"url": "https://github.com/ringcentral/ringcentral-web-phone.git"
},
"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": {
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"lint": "deno fmt && deno lint --fix",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"postpublish": "rm -rf dist",
"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.15.0",
"uuid": "^11.0.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/blueimp-md5": "^2.18.2",
"@types/node": "^22.13.1",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"@types/xmldom": "^0.1.34",
"buffer": "^6.0.3",
"dotenv-override-true": "^6.2.2",
"events": "^3.3.0",
"manate": "^2.0.0-rc.3",
"parcel": "^2.13.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"wait-for-async": "^0.7.13",
"yarn-upgrade-all": "^0.7.4"
}
}