forked from versatica/mediasoup-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.64 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
{
"name": "msc-node",
"version": "0.0.26",
"description": "mediasoup client side Node.js library",
"keywords": [
"webrtc",
"ortc",
"browser",
"nodejs"
],
"homepage": "https://mediasoup.org",
"repository": {
"type": "git",
"url": "https://github.com/shinyoshiaki/mediasoup-client-node.git"
},
"license": "ISC",
"contributors": [
"shinyoshiaki <[email protected]>",
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"José Luis Millán <[email protected]> (https://github.com/jmillan)"
],
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"npm-scripts.mjs",
"lib"
],
"scripts": {
"build": "npm run release:check",
"coverage": "node npm-scripts.mjs coverage",
"e2e": "cd example/client-node && npm run test",
"lint": "node npm-scripts.mjs lint",
"prepare": "node npm-scripts.mjs prepare",
"release": "node npm-scripts.mjs release && npm publish",
"release:check": "node npm-scripts.mjs release:check",
"server": "cd example/server && DEBUG=* npm run dev",
"test": "node npm-scripts.mjs test",
"typescript:build": "node npm-scripts.mjs typescript:build",
"type": "tsc --noEmit",
"typescript:watch": "node npm-scripts.mjs typescript:watch"
},
"jest": {
"cacheDirectory": ".cache/jest",
"coveragePathIgnorePatterns": [
"src/tests"
],
"testEnvironment": "node",
"testRegex": "src/tests/test.*\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
},
"verbose": true
},
"dependencies": {
"@types/debug": "^4.1.10",
"awaitqueue": "^2.3.3",
"bowser": "^2.11.0",
"debug": "^4.3.4",
"events": "^3.3.0",
"fake-mediastreamtrack": "^1.2.0",
"h264-profile-level-id": "^1.0.1",
"queue-microtask": "^1.2.3",
"sdp-transform": "^2.14.1",
"supports-color": "^9.4.0",
"ua-parser-js": "^1.0.36",
"werift": "^0.19.1"
},
"devDependencies": {
"@types/events": "^3.0.2",
"@types/jest": "^29.5.6",
"@types/node": "^16.3.2",
"@types/sdp-transform": "^2.4.8",
"@types/ua-parser-js": "^0.7.38",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.4.3",
"jest": "^29.7.0",
"open-cli": "^7.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^5.2.2",
"werift-deps": "file:./submodules/werift/packages/werift"
},
"engines": {
"node": ">=16"
}
}