-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "react-media-recorder",
"version": "1.7.1",
"description": "A React component based on MediaRecorder() API to record audio/video streams",
"main": "index.js",
"scripts": {
"build": "tsc && jsmin -o ./lib/index.js ./lib/index.js",
"prepare": "npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/giridharangm/react-media-recorder.git"
},
"keywords": [
"react",
"recorder",
"voice recording",
"video recording",
"media recording",
"getusermedia",
"MediaRecorder",
"getDisplayMedia",
"screen recorder",
"video recorder",
"audio recorder"
],
"author": "Giridharan GM",
"license": "MIT",
"bugs": {
"url": "https://github.com/giridharangm/react-media-recorder/issues"
},
"homepage": "https://github.com/giridharangm/react-media-recorder#readme",
"devDependencies": {
"@types/react": "^16.9.11",
"jsmin": "^1.0.1",
"typescript": "^4.4.3"
},
"types": "./lib/index.d.ts",
"dependencies": {
"extendable-media-recorder": "^6.6.5",
"extendable-media-recorder-wav-encoder": "^7.0.68"
}
}