-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
74 lines (74 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"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",
"eslint": "eslint src example/src"
},
"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",
{
"name": "beta",
"prerelease": true
},
"+([0-9])?(.{+([0-9]),x}).x"
]
},
"publishConfig": {
"access": "public"
},
"author": "XMTP Labs <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/xmtp/xmtp-react-native#readme",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@msgpack/msgpack": "^3.0.0-beta2",
"@noble/hashes": "^1.3.3",
"@xmtp/proto": "3.54.0",
"buffer": "^6.0.3",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@types/react": "^18.2.39",
"@types/react-native": "^0.72.7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.54.0",
"expo-module-scripts": "^3.0.4",
"expo-modules-core": "^1.5.9",
"prettier": "^3.1.0",
"semantic-release": "^21.0.1",
"typedoc": "^0.25.2",
"viem": "^2.4.0"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
}
}