-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.85 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.85 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "mediasoup",
"version": "3.20.0",
"description": "Cutting Edge WebRTC Video Conferencing",
"contributors": [
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"Nazar Mokynskyi (https://github.com/nazar-pc)"
],
"license": "ISC",
"homepage": "https://mediasoup.org",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/mediasoup.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "node/lib/index.js",
"types": "node/lib/index.d.ts",
"exports": {
".": {
"types": "./node/lib/index.d.ts",
"default": "./node/lib/index.js"
},
"./types": {
"types": "./node/lib/types.d.ts",
"default": "./node/lib/types.js"
},
"./ortc": {
"types": "./node/lib/ortc.d.ts",
"default": "./node/lib/ortc.js"
},
"./extras": {
"types": "./node/lib/extras.d.ts",
"default": "./node/lib/extras.js"
}
},
"files": [
"LICENSE",
"README.md",
"node/lib",
"npm-scripts.mjs",
"worker/Makefile",
"worker/deps/libwebrtc",
"worker/fbs",
"worker/fuzzer/include",
"worker/fuzzer/src",
"worker/include",
"worker/mocks/include",
"worker/mocks/src",
"worker/src",
"worker/scripts/*.json",
"worker/scripts/*.mjs",
"worker/scripts/*.py",
"worker/scripts/*.sh",
"worker/subprojects/*.wrap",
"worker/test/include",
"worker/test/src",
"worker/meson.build",
"worker/meson_options.txt",
"worker/tasks.py"
],
"engines": {
"node": ">=22"
},
"keywords": [
"webrtc",
"ortc",
"sfu",
"nodejs"
],
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"postinstall": "node npm-scripts.mjs postinstall",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"worker:build": "node npm-scripts.mjs worker:build",
"worker:prebuild-name": "node npm-scripts.mjs worker:prebuild-name",
"worker:prebuild": "node npm-scripts.mjs worker:prebuild",
"lint": "node npm-scripts.mjs lint:node && node npm-scripts.mjs lint:worker",
"lint:node": "node npm-scripts.mjs lint:node",
"lint:worker": "node npm-scripts.mjs lint:worker",
"format": "node npm-scripts.mjs format:node && node npm-scripts.mjs format:worker",
"format:node": "node npm-scripts.mjs format:node",
"format:worker": "node npm-scripts.mjs format:worker",
"tidy:worker": "node npm-scripts.mjs tidy:worker",
"tidy:worker:fix": "node npm-scripts.mjs tidy:worker:fix",
"flatc": "node npm-scripts.mjs flatc:node && node npm-scripts.mjs flatc:worker",
"flatc:node": "node npm-scripts.mjs flatc:node",
"flatc:worker": "node npm-scripts.mjs flatc:worker",
"test": "node npm-scripts.mjs test:node && node npm-scripts.mjs test:worker",
"test:node": "node npm-scripts.mjs test:node",
"test:worker": "node npm-scripts.mjs test:worker",
"coverage": "node npm-scripts.mjs coverage:node",
"coverage:node": "node npm-scripts.mjs coverage:node",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release"
},
"dependencies": {
"debug": "^4.4.3",
"flatbuffers": "^25.9.23",
"h264-profile-level-id": "^2.3.2",
"node-fetch": "^3.3.2",
"supports-color": "^10.2.2",
"tar": "^7.5.15"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.1",
"@types/debug": "^4.1.13",
"@types/ini": "^4.1.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"ini": "^6.0.0",
"jest": "^30.4.2",
"knip": "^6.14.2",
"marked": "^18.0.4",
"open-cli": "^9.0.0",
"pick-port": "^2.2.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"werift-sctp": "^0.0.11"
}
}