hitech-chatbot-react 1.0.1 → 1.0.3

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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ A ready-to-use React component for [n8n chat](https://github.com/n8n-io/n8n).
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @hitech/chatbot
8
+ npm install hitech-chatbot-react
9
9
  ```
10
10
 
11
11
  Note: This package requires `react` and `react-dom` as peer dependencies.
@@ -13,14 +13,14 @@ Note: This package requires `react` and `react-dom` as peer dependencies.
13
13
  ## Usage
14
14
 
15
15
  ```tsx
16
- import { Chatbot } from '@hitech/chatbot';
17
- import '@hitech/chatbot/dist/index.css';
16
+ import { Chatbot } from 'hitech-chatbot-react';
17
+ import 'hitech-chatbot-react/dist/index.css';
18
18
 
19
19
  function App() {
20
20
  return (
21
21
  <div className="App">
22
22
  <Chatbot
23
- webhookUrl="https://your-n8n-instance.com/webhook/..."
23
+ webhookUrl="https://your-server.com/webhook/..."
24
24
  />
25
25
  </div>
26
26
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hitech-chatbot-react",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Ready-to-use React component for chat",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",