general-ai-chat-bot 0.1.0

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.
@@ -0,0 +1,8 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ type ChatBotStyle = "minimal" | "modern" | "playful";
4
+ declare function ChatBot({ style }: {
5
+ style?: ChatBotStyle;
6
+ }): react_jsx_runtime.JSX.Element;
7
+
8
+ export { ChatBot };
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "general-ai-chat-bot",
3
+ "version": "0.1.0",
4
+ "description": "Customizable AI chatbot which can be connected to multiple APIs.",
5
+ "type": "module",
6
+ "main": "dist/cjs/index.js",
7
+ "module": "dist/esm/index.js",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "types": "dist/index.d.ts",
12
+ "scripts": {
13
+ "rollup": "rollup -c",
14
+ "test": "echo \"Error: no test specified\" && exit 1"
15
+ },
16
+ "keywords": [],
17
+ "author": "dtlogic",
18
+ "license": "ISC",
19
+ "exports": {
20
+ ".": {
21
+ "import": "./dist/cjs/index.js",
22
+ "require": "./dist/esm/index.js",
23
+ "types": "./dist/index.d.ts"
24
+ }
25
+ },
26
+ "dependencies": {
27
+ "class-variance-authority": "^0.7.1",
28
+ "lucide-react": "^0.537.0",
29
+ "openai": "^5.12.2",
30
+ "radix-ui": "^1.4.2",
31
+ "react": "19.1.0",
32
+ "react-dom": "19.1.0",
33
+ "sonner": "^2.0.7",
34
+ "tailwind-merge": "^3.3.1",
35
+ "tw-animate-css": "^1.3.6",
36
+ "zod": "^3.25.76"
37
+ },
38
+ "devDependencies": {
39
+ "@eslint/eslintrc": "^3",
40
+ "@rollup/plugin-commonjs": "^28.0.6",
41
+ "@rollup/plugin-node-resolve": "^16.0.1",
42
+ "@rollup/plugin-typescript": "^12.1.4",
43
+ "@tailwindcss/postcss": "^4",
44
+ "@types/node": "^20",
45
+ "@types/react": "^19",
46
+ "@types/react-dom": "^19",
47
+ "eslint": "^9",
48
+ "eslint-config-next": "15.4.6",
49
+ "prettier": "3.6.2",
50
+ "rollup": "^4.48.0",
51
+ "rollup-plugin-dts": "^6.2.3",
52
+ "tailwindcss": "^4",
53
+ "typescript": "^5"
54
+ }
55
+ }