@firstlovecenter/ai-chat 0.9.3 → 0.9.4
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/CHANGELOG.md +12 -0
- package/dist/ui/index.cjs +42 -6
- package/dist/ui/index.cjs.map +1 -1
- package/dist/ui/index.js +40 -6
- package/dist/ui/index.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firstlovecenter/ai-chat",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Reusable AI chat module: agent loop, Vertex providers (Claude + Gemini), narrators, persistence schema, and chat UI components. Host injects auth, scope, tools, and credentials via configureAiChat().",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "First Love Church",
|
|
@@ -55,15 +55,6 @@
|
|
|
55
55
|
"require": "./dist/ui/index.cjs"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"scripts": {
|
|
59
|
-
"build": "tsup",
|
|
60
|
-
"dev": "tsup --watch",
|
|
61
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
62
|
-
"typecheck": "tsc --noEmit",
|
|
63
|
-
"test": "vitest run",
|
|
64
|
-
"test:watch": "vitest",
|
|
65
|
-
"prepublishOnly": "pnpm run build"
|
|
66
|
-
},
|
|
67
58
|
"peerDependencies": {
|
|
68
59
|
"@prisma/client": ">=5.20",
|
|
69
60
|
"drizzle-orm": ">=0.36",
|
|
@@ -88,7 +79,9 @@
|
|
|
88
79
|
"google-auth-library": "^9.15.1",
|
|
89
80
|
"lucide-react": "^0.468.0",
|
|
90
81
|
"radix-ui": "^1.4.3",
|
|
82
|
+
"react-markdown": "^10.1.0",
|
|
91
83
|
"recharts": "^3.8.0",
|
|
84
|
+
"remark-gfm": "^4.0.1",
|
|
92
85
|
"zod": "^3.23.0"
|
|
93
86
|
},
|
|
94
87
|
"devDependencies": {
|
|
@@ -108,8 +101,15 @@
|
|
|
108
101
|
"typescript": "^5.7.2",
|
|
109
102
|
"vitest": "^2.1.8"
|
|
110
103
|
},
|
|
111
|
-
"packageManager": "pnpm@9.15.9",
|
|
112
104
|
"engines": {
|
|
113
105
|
"node": ">=20"
|
|
106
|
+
},
|
|
107
|
+
"scripts": {
|
|
108
|
+
"build": "tsup",
|
|
109
|
+
"dev": "tsup --watch",
|
|
110
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
111
|
+
"typecheck": "tsc --noEmit",
|
|
112
|
+
"test": "vitest run",
|
|
113
|
+
"test:watch": "vitest"
|
|
114
114
|
}
|
|
115
|
-
}
|
|
115
|
+
}
|