mr-chat-bird 1.0.14 → 1.0.15

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.
Files changed (2) hide show
  1. package/README.md +19 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,26 +1,28 @@
1
- ## Features
1
+ # mr-chat-bird
2
2
 
3
- This template comes with the following features:
3
+ 🚧 Work in Progress (WIP)
4
4
 
5
- - [PostCSS](https://postcss.org/) with [mantine-postcss-preset](https://mantine.dev/styles/postcss-preset)
6
- - [TypeScript](https://www.typescriptlang.org/)
7
- - ESLint setup with [eslint-config-mantine](https://github.com/mantinedev/eslint-config-mantine)
5
+ mr-chat-bird is a customizable React chat component and chat SDK currently under active development.
8
6
 
9
- ## npm scripts
7
+ ## Current Status
10
8
 
11
- ### Build and dev scripts
9
+ This package is publicly available on npm for testing and early feedback, but it is **not yet production-ready**.
12
10
 
13
- - `dev` start dev server
14
- - `build` – bundle application for production
15
- - `analyze` – analyzes application bundle with [@next/bundle-analyzer](https://www.npmjs.com/package/@next/bundle-analyzer)
11
+ Some features are still being implemented, improved, or may change in future releases.
16
12
 
17
- ### Testing scripts
13
+ ## Planned Features
18
14
 
19
- - `typecheck` – checks TypeScript types
20
- - `lint` – runs ESLint
21
- - `prettier:check` – checks files with Prettier
22
- - `test` – runs `jest`, `prettier:check`, `lint` and `typecheck` scripts
15
+ - Real-time messaging
16
+ - User presence
17
+ - Typing indicators
18
+ - Message reactions
19
+ - File sharing
20
+ - Group chats
21
+ - Theme customization
22
+ - Multi-tenant support
23
+ - AI assistant integration
23
24
 
24
- ### Other scripts
25
+ ## Installation
25
26
 
26
- - `prettier:write` – formats all files with Prettier
27
+ ```bash
28
+ npm install mr-chat-bird
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mr-chat-bird",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",