-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "rn-native-logs",
"version": "0.0.7",
"description": "A way to get all native logs from Android and iOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.json",
"prepare": "yarn build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/V1pi/native-logs.git"
},
"keywords": [
"react-native",
"native-logs"
],
"author": {
"name": "Vinicius Picanco",
"email": "viniciusspicanco@gmail.com"
},
"files": [
"dist",
"android/build.gradle",
"android/src",
"ios/CircularQueue.h",
"ios/CircularQueue.m",
"ios/RNNativeLogs.h",
"ios/RNNativeLogs.m",
"ios/RNNativeLogs.podspec",
"ios/RNNativeLogs.xcworkspace/*.xcworkspacedata",
"ios/RNNativeLogs.xcodeproj/*.pbxproj"
],
"license": "MIT",
"homepage": "https://github.com/V1pi/native-logs#readme",
"bugs:": "https://github.com/V1pi/native-logs/issues",
"devDependencies": {
"@types/node": "^18.11.10",
"@types/react-native": "^0.70.7",
"react": "^15.4.0",
"react-native": "^0.41.2",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}