-
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.52 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.52 KB
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
95
96
97
98
99
100
101
{
"name": "mediasoup-client",
"version": "3.20.0",
"description": "mediasoup client side TypeScript library",
"contributors": [
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)"
],
"license": "ISC",
"homepage": "https://mediasoup.org",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/mediasoup-client.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./types": {
"types": "./lib/types.d.ts",
"default": "./lib/types.js"
},
"./ortc": {
"types": "./lib/ortc.d.ts",
"default": "./lib/ortc.js"
},
"./enhancedEvents": {
"ortc": "./lib/enhancedEvents.d.ts",
"default": "./lib/enhancedEvents.js"
},
"./handlers/*": {
"types": "./lib/handlers/*.d.ts",
"default": "./lib/handlers/*.js"
},
"./fakeParameters": {
"types": "./lib/test/fakeParameters.d.ts",
"default": "./lib/test/fakeParameters.js"
}
},
"files": [
"LICENSE",
"README.md",
"npm-scripts.mjs",
"lib"
],
"engines": {
"node": ">=22"
},
"keywords": [
"webrtc",
"ortc",
"browser",
"nodejs"
],
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"lint": "node npm-scripts.mjs lint",
"format": "node npm-scripts.mjs format",
"test": "node npm-scripts.mjs test",
"coverage": "node npm-scripts.mjs coverage",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release"
},
"dependencies": {
"@types/debug": "^4.1.13",
"@types/events-alias": "npm:@types/events@^3.0.3",
"awaitqueue": "^3.3.0",
"debug": "^4.4.3",
"events-alias": "npm:events@^3.3.0",
"fake-mediastreamtrack": "^2.2.1",
"h264-profile-level-id": "^2.3.2",
"sdp-transform": "^3.0.0",
"supports-color": "^10.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/sdp-transform": "^2.15.0",
"@types/ua-parser-js": "^0.7.39",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"jest": "^30.3.0",
"open-cli": "^9.0.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1"
}
}