@usechat/react-native 1.0.14 → 1.0.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usechat/react-native",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Modular React Native Chat UI SDK with keyboard handling, customizable components, and rich features",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Lukasz Ko <hello@usechat.dev>",
@@ -31,24 +31,33 @@
31
31
  "keyboard",
32
32
  "typescript"
33
33
  ],
34
+ "scripts": {
35
+ "build": "tsup",
36
+ "dev": "tsup --watch",
37
+ "clean": "rm -rf dist",
38
+ "license:check": "node scripts/license-check.js",
39
+ "pub:beta": "pnpm run license:check && pnpm publish --access public --tag beta",
40
+ "pub:next": "pnpm run license:check && pnpm publish --no-git-checks --access public --tag next",
41
+ "pub:release": "pnpm run license:check && pnpm publish --access public"
42
+ },
34
43
  "dependencies": {
35
44
  "dayjs": "^1.11.13",
36
45
  "lucide-react-native": "^0.539.0",
37
- "react-native-keyboard-controller": "^1.18.6",
38
46
  "rn-emoji-keyboard": "^1.7.0"
39
47
  },
40
48
  "devDependencies": {
41
49
  "@tsconfig/react-native": "^3.0.6",
42
50
  "@types/react": "^19.0.0",
43
51
  "@types/react-native-web": "^0.19.2",
44
- "react": "^19.0.0",
45
- "react-dom": "^19.0.0",
46
- "react-native": "^0.79.5",
52
+ "react": "^19.1.0",
53
+ "react-dom": "^19.1.0",
54
+ "react-native": "^0.81.5",
47
55
  "tsup": "^8.1.0",
48
56
  "typescript": "^5.9.2"
49
57
  },
50
58
  "peerDependencies": {
51
59
  "expo-clipboard": "*",
60
+ "react-native-keyboard-controller": "*",
52
61
  "expo-contacts": "*",
53
62
  "expo-document-picker": "*",
54
63
  "expo-image-manipulator": "*",
@@ -62,6 +71,9 @@
62
71
  "react-native-web": "*"
63
72
  },
64
73
  "peerDependenciesMeta": {
74
+ "react-native-keyboard-controller": {
75
+ "optional": false
76
+ },
65
77
  "react-native": {
66
78
  "optional": true
67
79
  },
@@ -95,14 +107,5 @@
95
107
  "react-native-toast-message": {
96
108
  "optional": true
97
109
  }
98
- },
99
- "scripts": {
100
- "build": "tsup",
101
- "dev": "tsup --watch",
102
- "clean": "rm -rf dist",
103
- "license:check": "node scripts/license-check.js",
104
- "pub:beta": "pnpm run license:check && pnpm publish --access public --tag beta",
105
- "pub:next": "pnpm run license:check && pnpm publish --no-git-checks --access public --tag next",
106
- "pub:release": "pnpm run license:check && pnpm publish --access public"
107
110
  }
108
- }
111
+ }