@headwai/chat-bubble 1.0.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,14 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Chat Bubble Widget</title>
8
+ <script type="module" crossorigin src="/chat-bubble.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/chat-bubble.css">
10
+ </head>
11
+ <body>
12
+ <div id="chat-bubble-container"></div>
13
+ </body>
14
+ </html>
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@headwai/chat-bubble",
3
+ "version": "1.0.0",
4
+ "description": "A Svelte-based chat bubble component with AI integration",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "files": [
9
+ "dist",
10
+ "dist-widget"
11
+ ],
12
+ "keywords": [
13
+ "chat",
14
+ "ai",
15
+ "svelte",
16
+ "deep-chat",
17
+ "widget",
18
+ "bubble"
19
+ ],
20
+ "author": "headwAI GmbH",
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/headwAI-GmbH/chat-bubble.git"
25
+ },
26
+ "homepage": "https://github.com/headwAI-GmbH/chat-bubble#readme",
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "scripts": {
31
+ "dev": "vite",
32
+ "build": "npm run build:lib && npm run build:widget",
33
+ "build:lib": "vite build --config vite.lib.config.js",
34
+ "build:app": "vite build --config vite.app.config.js",
35
+ "build:widget": "vite build --config vite.widget.config.js",
36
+ "preview": "vite preview",
37
+ "prepublishOnly": "npm run build"
38
+ },
39
+ "devDependencies": {
40
+ "@sveltejs/vite-plugin-svelte": "^3.0.1",
41
+ "deep-chat": "2.2.2",
42
+ "svelte": "^4.2.9",
43
+ "vite": "^5.0.12"
44
+ },
45
+ "dependencies": {
46
+ "deep-chat": "2.2.2"
47
+ }
48
+ }