forked from xmtp/xmtp-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@xmtp/react-native-sdk",
"version": "0.1.0",
"description": "Wraps for native xmtp sdks for react native",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "expo-module build",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly",
"pretty": "npx prettier '**/*.{js,ts,tsx}' --write",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android",
"typedoc": "typedoc"
},
"keywords": [
"react-native",
"expo",
"xmtp-react-native-sdk",
"XMTP"
],
"repository": "https://github.com/xmtp/xmtp-react-native",
"bugs": {
"url": "https://github.com/xmtp/xmtp-react-native/issues"
},
"release": {
"branches": [
"main",
"release"
]
},
"publishConfig": {
"access": "public"
},
"author": "XMTP Labs <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/xmtp/xmtp-react-native#readme",
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@xmtp/proto": "^3.25.0",
"ethers": "^5.7.2",
"semantic-release": "^21.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.6",
"expo-module-scripts": "^3.0.4",
"expo-modules-core": "^1.5.9",
"prettier": "^3.0.0",
"typedoc": "^0.25.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}