forked from react-native-webrtc/react-native-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "react-native-webrtc",
"version": "1.100.0",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-webrtc/react-native-webrtc.git"
},
"description": "WebRTC for React Native",
"license": "MIT",
"homepage": "https://github.com/react-native-webrtc/react-native-webrtc",
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"webrtc"
],
"react-native": "src/index.ts",
"types": "lib/typescript/index.d.ts",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"dependencies": {
"base64-js": "1.5.1",
"event-target-shim": "6.0.2",
"tar": "6.1.11"
},
"peerDependencies": {
"react-native": ">=0.60.0"
},
"scripts": {
"check": "tsc --noEmit",
"postinstall": "node tools/downloadWebRTC.js",
"prepare": "husky install && bob build"
},
"bugs": {
"url": "https://github.com/react-native-webrtc/react-native-webrtc/issues"
},
"devDependencies": {
"@types/react": "17.0.40",
"@types/react-native": "0.67.3",
"husky": "7.0.2",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"react-native-builder-bob": "0.18.2",
"typescript": "4.6.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"webrtc-builds": {
"android": "https://github.com/jitsi/webrtc/releases/download/v100.0.0/android-webrtc.tgz",
"ios": "https://github.com/jitsi/webrtc/releases/download/v100.0.0/WebRTC.xcframework.tgz",
"ios-bitcode": "https://github.com/jitsi/webrtc/releases/download/v100.0.0/WebRTC.xcframework-bitcode.tgz"
}
}