-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "react-native-webrtc-web-shim",
"version": "1.0.7",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-webrtc/react-native-webrtc-web-shim.git"
},
"description": "A shim for React Native WebRTC to enable support for React Native Web",
"license": "MIT",
"homepage": "https://github.com/react-native-webrtc/react-native-webrtc-web-shim",
"keywords": [
"react-native",
"webrtc",
"react-native-web",
"react-native-webrtc",
"shim"
],
"main": "index.js",
"peerDependencies": {
"react": ">=16",
"react-native": ">=0.6",
"react-native-web": ">=0.14",
"react-native-webrtc": "*"
},
"scripts": {
"prepare": "install-peers",
"prettier": "prettier --write \"{,.,**/}*.{md,json,js,ts,tsx}\"",
"lint": "eslint .",
"test": "echo \"Error: no test specified\""
},
"bugs": {
"url": "https://github.com/react-native-webrtc/react-native-webrtc-web-shim/issues"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.3",
"install-peers-cli": "^2.2.0",
"lint-staged": "^14.0.1",
"prettier": "^3.1.1"
},
"files": [
"src",
"index.js"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}