-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "react-native-developer-console",
"version": "1.1.4",
"description": "A powerful, customizable developer console for React Native apps with network logging, device info, and debugging tools",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"example": "cd example && npm start",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"prepare": "npm run build"
},
"keywords": [
"react-native",
"developer-console",
"debugging",
"network-logging",
"dev-tools",
"console",
"logging",
"debug",
"react-native-debug"
],
"author": "Shahid Rogers <shahidrogers@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shahidrogers/react-native-developer-console.git"
},
"bugs": {
"url": "https://github.com/shahidrogers/react-native-developer-console/issues"
},
"homepage": "https://github.com/shahidrogers/react-native-developer-console#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.19.0",
"@react-native-clipboard/clipboard": "^1.11.0",
"react-native-device-info": "^10.7.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.0.0",
"typescript": "^4.9.0"
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
}
}