-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
99 lines (99 loc) · 2.51 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
{
"name": "mediasoup-client-aiortc",
"version": "3.10.6",
"description": "mediasoup-client handler for aiortc Python library",
"contributors": [
"José Luis Millán <[email protected]> (https://github.com/jmillan)",
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)"
],
"license": "ISC",
"homepage": "https://mediasoup.org",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/mediasoup-client-aiortc.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"npm-scripts.mjs",
"lib",
"worker/*.py",
"worker/*.cfg"
],
"os": [
"!win32"
],
"engines": {
"node": ">=18"
},
"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",
"lint": "npm run lint:node && npm run lint:python",
"lint:node": "node npm-scripts.mjs lint:node",
"lint:python": "node npm-scripts.mjs lint:python",
"format": "npm run format:node",
"format:node": "node npm-scripts.mjs format:node",
"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"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "src/test/test.*\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
},
"coveragePathIgnorePatterns": [
"src/test"
],
"cacheDirectory": ".cache/jest"
},
"dependencies": {
"@types/debug": "^4.1.12",
"debug": "^4.3.7",
"event-target-shim": "^6.0.2",
"fake-mediastreamtrack": "^1.2.0",
"mediasoup-client": "^3.7.16",
"netstring": "^0.3.0",
"sdp-transform": "^2.14.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.13",
"@types/node": "22",
"@types/sdp-transform": "^2.4.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
}
}