@assemble-inc/chat-widget 0.1.1 → 0.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@assemble-inc/chat-widget",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Embeddable AI chat widget powered by Anthropic and MCP",
5
5
  "keywords": [
6
6
  "chat",
@@ -25,7 +25,8 @@
25
25
  "import": "./dist/server.js",
26
26
  "require": "./dist/server.cjs"
27
27
  },
28
- "./style.css": "./dist/index.css"
28
+ "./style.css": "./dist/index.css",
29
+ "./embed": "./dist/embed.iife.js"
29
30
  },
30
31
  "files": [
31
32
  "dist"
@@ -36,6 +37,7 @@
36
37
  "scripts": {
37
38
  "dev": "concurrently \"vite\" \"tsx watch server.ts\"",
38
39
  "build": "vite build && tsup",
40
+ "build:embed": "vite build --config vite.embed.config.ts",
39
41
  "preview": "vite preview",
40
42
  "lint": "tsc --noEmit",
41
43
  "auth": "tsx scripts/auth.ts"
@@ -50,7 +52,8 @@
50
52
  "@modelcontextprotocol/sdk": "^1.12.0",
51
53
  "ai": "^6.0.176",
52
54
  "class-variance-authority": "^0.7.1",
53
- "express": "^4.21.2"
55
+ "express": "^4.21.2",
56
+ "react-markdown": "^9.0.1"
54
57
  },
55
58
  "devDependencies": {
56
59
  "@tailwindcss/postcss": "^4.2.4",
@@ -71,6 +74,7 @@
71
74
  "tsx": "^4.19.2",
72
75
  "typescript": "5.8.3",
73
76
  "vite": "^6.3.4",
77
+ "vite-plugin-css-injected-by-js": "^3.5.2",
74
78
  "vite-plugin-dts": "^4.5.4"
75
79
  }
76
80
  }