forked from versatica/mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.52 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
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
{
"name": "mediasoup",
"version": "3.13.16",
"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",
"files": [
"node/lib",
"worker/deps/libwebrtc",
"worker/fbs",
"worker/fuzzer/include",
"worker/fuzzer/src",
"worker/include",
"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",
"npm-scripts.mjs"
],
"engines": {
"node": ">=16"
},
"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": "node npm-scripts.mjs worker:prebuild",
"lint": "npm run lint:node && npm run lint:worker",
"lint:node": "node npm-scripts.mjs lint:node",
"lint:worker": "node npm-scripts.mjs lint:worker",
"format": "npm run format:node && npm run format:worker",
"format:node": "node npm-scripts.mjs format:node",
"format:worker": "node npm-scripts.mjs format:worker",
"flatc": "npm run flatc:node && npm run flatc:worker",
"flatc:node": "node npm-scripts.mjs flatc:node",
"flatc:worker": "node npm-scripts.mjs flatc:worker",
"test": "npm run test:node && npm run test:worker",
"test:node": "node npm-scripts.mjs test:node",
"test:worker": "node npm-scripts.mjs test:worker",
"coverage:node": "node npm-scripts.mjs coverage:node",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release",
"release:upload-mac-arm-prebuilt-worker": "node npm-scripts.mjs release:upload-mac-arm-prebuilt-worker"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "node/src/test/test-.*\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
},
"coveragePathIgnorePatterns": [
"node/src/fbs",
"node/src/test"
],
"cacheDirectory": ".cache/jest",
"modulePathIgnorePatterns": [
"worker",
"rust",
"target"
]
},
"dependencies": {
"debug": "^4.3.4",
"flatbuffers": "^23.5.26",
"h264-profile-level-id": "^2.0.0",
"node-fetch": "^3.3.2",
"supports-color": "^9.4.0",
"tar": "^6.2.0"
},
"devDependencies": {
"@octokit/rest": "^20.0.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"marked": "^11.1.1",
"open-cli": "^8.0.0",
"pick-port": "^2.0.0",
"prettier": "^3.1.1",
"sctp": "^1.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}