-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.48 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@whereby/jslib-media",
"description": "Media library for Whereby",
"version": "2.0.0",
"private": false,
"license": "MIT",
"homepage": "https://github.com/whereby/jslib-media",
"repository": {
"type": "git",
"url": "git+https://github.com/whereby/jslib-media.git"
},
"bugs": {
"url": "https://github.com/whereby/jslib-media/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.js",
"lint": "eslint src tests",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:unit:coverage": "jest --collectCoverage",
"format:fix": "prettier --write './**/*.{js,ts,yml,json}'",
"format:check": "prettier --check './**/*.{js,ts,yml,json}'"
},
"main": "./dist/index.esm.js",
"module": "./dist/index.esm.js",
"exports": {
".": {
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"check-ip": "^1.1.1",
"events": "^3.3.0",
"ip-address": "^9.0.5",
"mediasoup-client": "3.6.100",
"rtcstats": "github:whereby/rtcstats#5.4.0",
"sdp": "^3.2.0",
"sdp-transform": "^2.14.2",
"socket.io-client": "4.7.2",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"uuid-validate": "^0.0.3",
"webrtc-adapter": "^8.2.3"
},
"devDependencies": {
"@auto-it/npm": "^11.1.1",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-replace": "^5.0.5",
"@types/jest": "^29.5.12",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^9.0.8",
"@types/uuid-validate": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"auto": "^11.1.1",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"process": "^0.11.10",
"rollup": "^4.12.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=16.0.0"
},
"auto": {
"extends": "./.autorc.json"
}
}