react-native-inapp-inspector 1.1.20 → 1.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -10
- package/dist/commonjs/components/AnalyticsDetail.js +5 -3
- package/dist/commonjs/components/AnalyticsEventCard.d.ts +0 -1
- package/dist/commonjs/components/AnalyticsEventCard.js +85 -96
- package/dist/commonjs/components/ConsoleLogCard.js +2 -2
- package/dist/commonjs/components/DiffViewer.js +2 -2
- package/dist/commonjs/components/HeadersSection.js +2 -2
- package/dist/commonjs/components/Inspector/BundleTab.js +488 -653
- package/dist/commonjs/components/Inspector/ConsoleTab.js +2 -2
- package/dist/commonjs/components/Inspector/LogDetail.js +2 -2
- package/dist/commonjs/components/Inspector/NetworkDetail.js +2 -2
- package/dist/commonjs/components/Inspector/PerformanceTab.js +185 -244
- package/dist/commonjs/components/Inspector/ReduxDetail.js +4 -4
- package/dist/commonjs/components/Inspector/ReduxTab.js +3 -3
- package/dist/commonjs/components/JsonViewer.js +2 -2
- package/dist/commonjs/components/LogCard.js +2 -2
- package/dist/commonjs/components/MetaAccordion.js +2 -2
- package/dist/commonjs/constants/version.d.ts +1 -1
- package/dist/commonjs/constants/version.js +1 -1
- package/dist/commonjs/customHooks/bundleAnalyzer.d.ts +115 -0
- package/dist/commonjs/customHooks/bundleAnalyzer.js +561 -0
- package/dist/commonjs/customHooks/performanceTracker.d.ts +84 -0
- package/dist/commonjs/customHooks/performanceTracker.js +541 -0
- package/dist/commonjs/helpers/index.d.ts +15 -0
- package/dist/commonjs/helpers/index.js +112 -1
- package/dist/commonjs/i18n/index.d.ts +27 -1
- package/dist/commonjs/i18n/index.js +66 -21
- package/dist/commonjs/i18n/locales/en.json +225 -2
- package/dist/commonjs/index.d.ts +2 -1
- package/dist/commonjs/index.js +8 -4
- package/dist/commonjs/styles/AppColors.d.ts +110 -0
- package/dist/commonjs/styles/AppColors.js +114 -0
- package/dist/commonjs/types/interfaces.d.ts +1 -0
- package/dist/esm/components/AnalyticsDetail.js +5 -3
- package/dist/esm/components/AnalyticsEventCard.d.ts +0 -1
- package/dist/esm/components/AnalyticsEventCard.js +85 -95
- package/dist/esm/components/ConsoleLogCard.js +1 -1
- package/dist/esm/components/DiffViewer.js +1 -1
- package/dist/esm/components/HeadersSection.js +1 -1
- package/dist/esm/components/Inspector/BundleTab.js +489 -654
- package/dist/esm/components/Inspector/ConsoleTab.js +1 -1
- package/dist/esm/components/Inspector/LogDetail.js +1 -1
- package/dist/esm/components/Inspector/NetworkDetail.js +1 -1
- package/dist/esm/components/Inspector/PerformanceTab.js +185 -244
- package/dist/esm/components/Inspector/ReduxDetail.js +3 -3
- package/dist/esm/components/Inspector/ReduxTab.js +3 -3
- package/dist/esm/components/JsonViewer.js +1 -1
- package/dist/esm/components/LogCard.js +1 -1
- package/dist/esm/components/MetaAccordion.js +1 -1
- package/dist/esm/constants/version.d.ts +1 -1
- package/dist/esm/constants/version.js +1 -1
- package/dist/esm/customHooks/bundleAnalyzer.d.ts +115 -0
- package/dist/esm/customHooks/bundleAnalyzer.js +554 -0
- package/dist/esm/customHooks/performanceTracker.d.ts +84 -0
- package/dist/esm/customHooks/performanceTracker.js +537 -0
- package/dist/esm/helpers/index.d.ts +15 -0
- package/dist/esm/helpers/index.js +107 -0
- package/dist/esm/i18n/index.d.ts +27 -1
- package/dist/esm/i18n/index.js +61 -20
- package/dist/esm/i18n/locales/en.json +225 -2
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +6 -2
- package/dist/esm/styles/AppColors.d.ts +110 -0
- package/dist/esm/styles/AppColors.js +114 -0
- package/dist/esm/types/interfaces.d.ts +1 -0
- package/package.json +35 -13
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-inapp-inspector",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.22",
|
|
4
|
+
"description": "The zero-config, all-in-one in-app debugger for React Native & Expo. Inspect Network (fetch/axios), Console logs, Stack Traces, Redux State, Firebase Analytics, and JS Bundle size directly on device.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/vengatmacuser/react-native-inapp-inspector.git"
|
|
8
8
|
},
|
|
9
9
|
"bugs": {
|
|
10
|
-
"url": "https://github.com/vengatmacuser/react-native-inapp-inspector/issues"
|
|
10
|
+
"url": "https://github.com/vengatmacuser/react-native-inapp-inspector/issues",
|
|
11
|
+
"email": "vengatmacuser@gmail.com"
|
|
11
12
|
},
|
|
12
13
|
"homepage": "https://github.com/vengatmacuser/react-native-inapp-inspector#readme",
|
|
13
14
|
"main": "dist/commonjs/index.js",
|
|
@@ -35,11 +36,32 @@
|
|
|
35
36
|
},
|
|
36
37
|
"keywords": [
|
|
37
38
|
"react-native",
|
|
39
|
+
"react-native-inapp-inspector",
|
|
38
40
|
"network-logger",
|
|
39
41
|
"network-inspector",
|
|
42
|
+
"react-native-network-logger",
|
|
43
|
+
"flipper-alternative",
|
|
44
|
+
"chucker",
|
|
45
|
+
"chucker-react-native",
|
|
46
|
+
"in-app-inspector",
|
|
47
|
+
"in-app-debugger",
|
|
48
|
+
"react-native-debugger",
|
|
49
|
+
"react-native-devtools",
|
|
50
|
+
"devtools",
|
|
51
|
+
"expo",
|
|
52
|
+
"expo-network-logger",
|
|
53
|
+
"http-logger",
|
|
54
|
+
"api-inspector",
|
|
55
|
+
"console-logger",
|
|
56
|
+
"redux-inspector",
|
|
57
|
+
"redux-logger",
|
|
40
58
|
"analytics-logger",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
59
|
+
"bundle-visualizer",
|
|
60
|
+
"hermes",
|
|
61
|
+
"zero-config",
|
|
62
|
+
"debug-tool",
|
|
63
|
+
"ios",
|
|
64
|
+
"android"
|
|
43
65
|
],
|
|
44
66
|
"author": "Vengateswaran Balakrishnan",
|
|
45
67
|
"contributors": [
|
|
@@ -53,16 +75,16 @@
|
|
|
53
75
|
"type": "github",
|
|
54
76
|
"url": "https://github.com/sponsors/vengatmacuser"
|
|
55
77
|
},
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"@react-navigation/native": "^6.1.9",
|
|
58
|
-
"i18next": "^26.3.6",
|
|
59
|
-
"react-i18next": "^17.0.11",
|
|
60
|
-
"react-native-linear-gradient": "^2.8.3",
|
|
61
|
-
"react-native-svg": "^15.14.0"
|
|
62
|
-
},
|
|
63
78
|
"peerDependencies": {
|
|
64
79
|
"react": ">=18.0.0",
|
|
65
|
-
"react-native": ">=0.60.0"
|
|
80
|
+
"react-native": ">=0.60.0",
|
|
81
|
+
"react-native-linear-gradient": ">=2.0.0",
|
|
82
|
+
"react-native-svg": ">=12.0.0"
|
|
83
|
+
},
|
|
84
|
+
"peerDependenciesMeta": {
|
|
85
|
+
"@react-navigation/native": {
|
|
86
|
+
"optional": true
|
|
87
|
+
}
|
|
66
88
|
},
|
|
67
89
|
"devDependencies": {
|
|
68
90
|
"@react-navigation/native": "^6.1.9",
|