@elmoorx/ai-chat 2.0.0-alpha.25 → 3.0.0-alpha.2

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 +3 -3
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @wafra/ai-chat
1
+ # @elmoorx/ai-chat
2
2
 
3
3
  > AI chat: streaming UI, message history, citations, multimodal
4
4
 
@@ -7,13 +7,13 @@ Part of the [Wafra Framework](https://github.com/wafra/framework) — Build fast
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install @wafra/ai-chat
10
+ npm install @elmoorx/ai-chat
11
11
  ```
12
12
 
13
13
  ## Quick Start
14
14
 
15
15
  ```typescript
16
- import { /* exports */ } from '@wafra/ai-chat';
16
+ import { /* exports */ } from '@elmoorx/ai-chat';
17
17
  ```
18
18
 
19
19
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmoorx/ai-chat",
3
- "version": "2.0.0-alpha.25",
3
+ "version": "3.0.0-alpha.2",
4
4
  "description": "AI chat: streaming UI, message history, citations, multimodal",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -27,5 +27,9 @@
27
27
  "framework",
28
28
  "ai-chat"
29
29
  ],
30
- "sideEffects": false
30
+ "sideEffects": false,
31
+ "publishConfig": {
32
+ "access": "public",
33
+ "registry": "https://registry.npmjs.org/"
34
+ }
31
35
  }