@sendbird/ai-agent-messenger-react-native 0.0.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +35 -0
- package/README.md +3 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +952 -0
- package/dist/index.js +5029 -0
- package/package.json +112 -0
package/package.json
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sendbird/ai-agent-messenger-react-native",
|
|
3
|
+
"version": "0.0.1-beta.0",
|
|
4
|
+
"description": "Sendbird AI Agent Messenger for React Native",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"react-native": "./dist/index.js",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"!src",
|
|
19
|
+
"dist",
|
|
20
|
+
"android",
|
|
21
|
+
"ios",
|
|
22
|
+
"cpp",
|
|
23
|
+
"*.podspec",
|
|
24
|
+
"react-native.config.js",
|
|
25
|
+
"!ios/build",
|
|
26
|
+
"!android/build",
|
|
27
|
+
"!android/gradle",
|
|
28
|
+
"!android/gradlew",
|
|
29
|
+
"!android/gradlew.bat",
|
|
30
|
+
"!android/local.properties",
|
|
31
|
+
"!**/__tests__",
|
|
32
|
+
"!**/__fixtures__",
|
|
33
|
+
"!**/__mocks__",
|
|
34
|
+
"!**/.*",
|
|
35
|
+
"!CLAUDE.md"
|
|
36
|
+
],
|
|
37
|
+
"keywords": [
|
|
38
|
+
"react-native",
|
|
39
|
+
"ios",
|
|
40
|
+
"android",
|
|
41
|
+
"sendbird",
|
|
42
|
+
"ai-agent",
|
|
43
|
+
"messenger",
|
|
44
|
+
"chat",
|
|
45
|
+
"chatbot"
|
|
46
|
+
],
|
|
47
|
+
"author": "Sendbird <support@sendbird.com> (https://sendbird.com)",
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@react-native-documents/picker": "^10.1.7",
|
|
50
|
+
"@react-native/babel-preset": "0.81.1",
|
|
51
|
+
"@sendbird/chat": "^4.20.1",
|
|
52
|
+
"@types/jest": "^29.5.14",
|
|
53
|
+
"@types/react": "^19.2.2",
|
|
54
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
55
|
+
"date-fns": "^4.1.0",
|
|
56
|
+
"expo-document-picker": "^14.0.7",
|
|
57
|
+
"expo-image-picker": "^17.0.8",
|
|
58
|
+
"jest": "^29.7.0",
|
|
59
|
+
"react": "19.1.0",
|
|
60
|
+
"react-native": "0.81.4",
|
|
61
|
+
"react-native-image-picker": "^8.2.1",
|
|
62
|
+
"react-native-mmkv": "^4.0.0-beta.12",
|
|
63
|
+
"react-native-safe-area-context": "^5.6.1",
|
|
64
|
+
"typescript": "^5.9.2",
|
|
65
|
+
"@sendbird/vite-tools": "0.0.1",
|
|
66
|
+
"@sendbird/ai-agent-core": "1.6.4"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@sendbird/uikit-tools": "0.0.18",
|
|
70
|
+
"react-native-code-highlighter": "^1.3.0",
|
|
71
|
+
"react-native-markdown-display": "^7.0.2",
|
|
72
|
+
"react-syntax-highlighter": "^15.6.1"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"@react-native-clipboard/clipboard": ">=1.0.0",
|
|
76
|
+
"@react-native-documents/picker": ">=10.0.0",
|
|
77
|
+
"@sendbird/chat": "^4.20.1",
|
|
78
|
+
"date-fns": ">=4.0.0",
|
|
79
|
+
"expo-document-picker": ">=14.0.0",
|
|
80
|
+
"expo-image-picker": ">=17.0.0",
|
|
81
|
+
"react": ">=18.0.0",
|
|
82
|
+
"react-native": ">=0.80.0",
|
|
83
|
+
"react-native-image-picker": ">=8.0.0",
|
|
84
|
+
"react-native-mmkv": ">=4.0.0-beta.0",
|
|
85
|
+
"react-native-safe-area-context": ">=5.0.0"
|
|
86
|
+
},
|
|
87
|
+
"peerDependenciesMeta": {
|
|
88
|
+
"@react-native-documents/picker": {
|
|
89
|
+
"optional": true
|
|
90
|
+
},
|
|
91
|
+
"expo-document-picker": {
|
|
92
|
+
"optional": true
|
|
93
|
+
},
|
|
94
|
+
"expo-image-picker": {
|
|
95
|
+
"optional": true
|
|
96
|
+
},
|
|
97
|
+
"react-native-image-picker": {
|
|
98
|
+
"optional": true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"jest": {
|
|
102
|
+
"preset": "react-native",
|
|
103
|
+
"modulePathIgnorePatterns": [
|
|
104
|
+
"<rootDir>/dist/"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"scripts": {
|
|
108
|
+
"test": "jest",
|
|
109
|
+
"build": "vite build",
|
|
110
|
+
"clear": "rm -rf dist"
|
|
111
|
+
}
|
|
112
|
+
}
|