@usechat/react-native 1.0.16 → 1.0.17

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.16",
3
+ "version": "1.0.17",
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,15 +31,6 @@
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
- },
43
34
  "dependencies": {
44
35
  "dayjs": "^1.11.13",
45
36
  "lucide-react-native": "^0.539.0",
@@ -107,5 +98,14 @@
107
98
  "react-native-toast-message": {
108
99
  "optional": true
109
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
110
  }
111
- }
111
+ }