-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (57 loc) · 1.39 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
{
"name": "use-media-stream",
"version": "1.0.3",
"description": "React hook that simplifies the integration and management of media streams with extensive control over devices, streaming status, and event handling.",
"type": "module",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"prepare": "npm run build"
},
"engines": {
"node": ">=16"
},
"keywords": [
"react",
"react-hook",
"media-stream",
"webRTC",
"audio",
"video",
"streaming",
"media",
"device-control",
"event-handling",
"Web development"
],
"author": "Dhruv Kothari <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kothariji/use-media-stream/issues"
},
"homepage": "https://github.com/kothariji/use-media-stream#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kothariji/use-media-stream.git"
},
"peerDependencies": {
"deepmerge": "^4.3.1",
"react": ">=16"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
}
}