-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "media-socket",
"displayName": "Media-Socket",
"version": "0.0.2-b",
"main": "./dist/src/index.js",
"description": "Stream easily UserMedia audio and video over websocket",
"keywords": [
"media-socket",
"websocket",
"websockets",
"websockets",
"recording audio",
"recording video",
"streaming video",
"streaming audio",
"recordrtc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lykos94/media-socket.git"
},
"scripts": {
"build": "rm -r dist/ && tsc && npx webpack --config webpack.config.js && cp dist/bundle.js examples/client/html/bundle.js"
},
"dependencies": {
"recordrtc": "^5.6.2"
},
"devDependencies": {
"@types/recordrtc": "^5.6.8",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}