-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1011 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1011 Bytes
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
{
"name": "optic-react-native",
"author": "Adnan Sahinovic",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"dev": "tsup --watch",
"prepare": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["react-native", "react", "optic", "metrics", "performance", "debugging"],
"license": "MIT",
"description": "React Native library for Optic",
"dependencies": {
"@react-navigation/native": "^7.1.9",
"expo-router": "^5.0.7",
"react": "*",
"react-native": "*",
"zustand": "^5.0.4"
},
"devDependencies": {
"@types/react": "^19.1.3",
"@types/react-native": "^0.72.8",
"react-native-safe-area-context": "^4.9.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-safe-area-context": ">=4.0.0"
}
}