-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 KB
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
{
"name": "opensips-js-react-native",
"version": "0.1.1",
"type": "module",
"scripts": {
"prepare": "bob build",
"lint": "eslint . --ext .tsx,.js,.jsx,.cjs,.mjs,.ts --fix --ignore-path .gitignore",
"ts-check": "tsc --noEmit"
},
"main": "library/commonjs/index.js",
"module": "library/module/index.js",
"types": "library/typescript/index.d.ts",
"files": [
"library/*"
],
"dependencies": {
"opensips-js": "^0.1.2",
"core-js": "3.8.3",
"react-native-webrtc": "*"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-webrtc": "*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.74.83",
"@react-native/eslint-config": "^0.73.1",
"@react-native/metro-config": "0.74.83",
"@react-native/typescript-config": "0.74.83",
"@types/node": "^20.12.7",
"@types/react": "^18.2.66",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@voicenter-team/eslint-config-react-native": "^1.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-refresh": "^0.4.7",
"react-native-builder-bob": "^0.23.2",
"tsc": "^2.0.4",
"typescript": "^5.2.2"
},
"react-native-builder-bob": {
"source": "src",
"output": "library",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}