@usechat/react-native 1.0.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/package.json ADDED
@@ -0,0 +1,111 @@
1
+ {
2
+ "name": "@usechat/react-native",
3
+ "version": "1.0.0",
4
+ "description": "Modular React Native Chat UI SDK with keyboard handling, customizable components, and rich features",
5
+ "license": "SEE LICENSE IN LICENSE",
6
+ "author": "Lukasz Ko <hello@usechat.dev>",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.mjs",
9
+ "types": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.mjs",
14
+ "require": "./dist/index.js",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "LICENSE",
21
+ "README.md"
22
+ ],
23
+ "homepage": "https://usechat.dev",
24
+ "keywords": [
25
+ "react-native",
26
+ "chat",
27
+ "ui",
28
+ "sdk",
29
+ "messaging",
30
+ "usechat",
31
+ "keyboard",
32
+ "typescript"
33
+ ],
34
+ "dependencies": {
35
+ "dayjs": "^1.11.13",
36
+ "lucide-react-native": "^0.539.0"
37
+ },
38
+ "devDependencies": {
39
+ "@tsconfig/react-native": "^3.0.6",
40
+ "@types/react": "~19.0.0",
41
+ "@types/react-native-web": "^0.19.2",
42
+ "react": "19.0.0",
43
+ "react-dom": "19.0.0",
44
+ "react-native": "0.79.5",
45
+ "tsup": "^8.1.0",
46
+ "typescript": "^5.9.2"
47
+ },
48
+ "peerDependencies": {
49
+ "react": "*",
50
+ "react-native": "*",
51
+ "react-native-web": "*",
52
+ "react-native-safe-area-context": "*",
53
+ "expo-image-picker": "*",
54
+ "expo-document-picker": "*",
55
+ "expo-location": "*",
56
+ "expo-contacts": "*",
57
+ "expo-image-manipulator": "*",
58
+ "expo-clipboard": "*",
59
+ "react-native-actions-sheet": "^0.9.7",
60
+ "rn-emoji-keyboard": "^1.7.0",
61
+ "react-native-keyboard-controller": "^1.18.4",
62
+ "react-native-toast-message": "*"
63
+ },
64
+ "peerDependenciesMeta": {
65
+ "react-native": {
66
+ "optional": true
67
+ },
68
+ "react-native-web": {
69
+ "optional": true
70
+ },
71
+ "react-native-safe-area-context": {
72
+ "optional": false
73
+ },
74
+ "expo-image-picker": {
75
+ "optional": true
76
+ },
77
+ "expo-document-picker": {
78
+ "optional": true
79
+ },
80
+ "expo-location": {
81
+ "optional": true
82
+ },
83
+ "expo-contacts": {
84
+ "optional": true
85
+ },
86
+ "react-native-actions-sheet": {
87
+ "optional": true
88
+ },
89
+ "rn-emoji-keyboard": {
90
+ "optional": true
91
+ },
92
+ "expo-image-manipulator": {
93
+ "optional": true
94
+ },
95
+ "expo-clipboard": {
96
+ "optional": true
97
+ },
98
+ "react-native-toast-message": {
99
+ "optional": true
100
+ }
101
+ },
102
+ "scripts": {
103
+ "build": "tsup",
104
+ "dev": "tsup --watch",
105
+ "clean": "rm -rf dist",
106
+ "license:check": "node scripts/license-check.js",
107
+ "pub:beta": "pnpm run license:check && pnpm publish --access public --tag beta",
108
+ "pub:next": "pnpm run license:check && pnpm publish --no-git-checks --access public --tag next",
109
+ "pub:release": "pnpm run license:check && pnpm publish --access public"
110
+ }
111
+ }