@terryavg/neptune-ai-chatbot 1.0.0 → 1.0.1

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 (3) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
  3. package/README +0 -16
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Neptune AI Chatbot Component
2
+
3
+ ## Installation
4
+ ```bash
5
+ npm i @terryavg/neptune-ai-chatbot
6
+ ```
7
+
8
+ ## Usage
9
+ ```tsx
10
+ import { NeptuneChatBot } from "@terryavg/neptune-ai-chatbot";
11
+ import '@terryavg/neptune-ai-chatbot/styles.css';
12
+
13
+ function App() {
14
+ return <NeptuneChatBot/>;
15
+ }
16
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terryavg/neptune-ai-chatbot",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -54,4 +54,4 @@
54
54
  "tsup": "^8.5.1",
55
55
  "typescript": "^5"
56
56
  }
57
- }
57
+ }
package/README DELETED
@@ -1,16 +0,0 @@
1
- # Neptune AI Chatbot Component
2
-
3
- ## Installation
4
- ```bash
5
- npm install neptune-chatbot
6
- ```
7
-
8
- ## Usage
9
- ```tsx
10
- import { NeptuneChatBot } from "neptune-chatbot";
11
- import 'neptune-chatbot/styles.css';
12
-
13
- function App() {
14
- return <NeptuneChatBot />;
15
- }
16
- ```