-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-native-network-inspector-devtools",
"version": "0.1.4",
"description": "In-app network request logger and mocker for React Native. Captures axios traffic, renders a QA-friendly panel, and supports per-request response mocking.",
"license": "MIT",
"author": "Akshay Ambaliya",
"repository": {
"type": "git",
"url": "https://github.com/akshayambaliya/react-native-network-inspector-devtools.git"
},
"bugs": {
"url": "https://github.com/akshayambaliya/react-native-network-inspector-devtools/issues"
},
"homepage": "https://github.com/akshayambaliya/react-native-network-inspector-devtools#readme",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js",
"types": "./lib/typescript/src/index.d.ts"
}
},
"sideEffects": false,
"files": [
"src",
"lib",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "bob build",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"prepare": "bob build"
},
"keywords": [
"react-native",
"network",
"logger",
"debugger",
"axios",
"interceptor",
"mock",
"react-native-network-inspector-devtools",
"react-native-network-mock",
"react-native-network-inspector",
"qa"
],
"peerDependencies": {
"axios": ">=1.0.0",
"react": ">=18.0.0",
"react-native": ">=0.73.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"axios": "^1.7.0",
"react": "18.3.1",
"react-native": "0.76.0",
"react-native-builder-bob": "^0.30.0",
"typescript": "^5.4.0"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.json"
}
]
]
}
}