@kuckit/ai-module 3.0.7 → 3.0.9
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 +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuckit/ai-module",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"description": "AI chat streaming module for Kuckit applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/server/module.js",
|
|
@@ -23,16 +23,19 @@
|
|
|
23
23
|
"id": "kuckit.ai",
|
|
24
24
|
"server": ".",
|
|
25
25
|
"client": "./client",
|
|
26
|
-
"styles": "./styles.css"
|
|
26
|
+
"styles": "./styles.css",
|
|
27
|
+
"setup": {
|
|
28
|
+
"postInstallMessage": "🤖 AI Chat module installed!\n\n Add to your .env:\n GOOGLE_GENERATIVE_AI_API_KEY=your-api-key-here\n\n Get your API key from: https://aistudio.google.com/apikey"
|
|
29
|
+
}
|
|
27
30
|
},
|
|
28
31
|
"scripts": {
|
|
29
32
|
"build": "tsdown && cp src/styles.css dist/styles.css",
|
|
30
33
|
"prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
|
|
31
34
|
},
|
|
32
35
|
"peerDependencies": {
|
|
33
|
-
"@kuckit/domain": "^3.0.
|
|
34
|
-
"@kuckit/sdk": "^3.0.
|
|
35
|
-
"@kuckit/sdk-react": "^3.0.
|
|
36
|
+
"@kuckit/domain": "^3.0.9",
|
|
37
|
+
"@kuckit/sdk": "^3.0.9",
|
|
38
|
+
"@kuckit/sdk-react": "^3.0.9",
|
|
36
39
|
"react": "^18 || ^19",
|
|
37
40
|
"typescript": "^5",
|
|
38
41
|
"express": "^4 || ^5"
|