@kuckit/ai-module 3.0.5 → 3.0.6

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.
Files changed (2) hide show
  1. package/dist/styles.css +2 -2
  2. package/package.json +4 -4
package/dist/styles.css CHANGED
@@ -5,5 +5,5 @@
5
5
  * @import "@kuckit/ai-module/styles.css";
6
6
  */
7
7
 
8
- /* Scan module components for Tailwind classes */
9
- @source "./**/*.tsx";
8
+ /* Scan compiled module components for Tailwind classes (JS, not TSX - TSX doesn't exist after publishing) */
9
+ @source "./**/*.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuckit/ai-module",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "AI chat streaming module for Kuckit applications",
5
5
  "type": "module",
6
6
  "main": "dist/server/module.js",
@@ -30,9 +30,9 @@
30
30
  "prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
31
31
  },
32
32
  "peerDependencies": {
33
- "@kuckit/domain": "^3.0.5",
34
- "@kuckit/sdk": "^3.0.5",
35
- "@kuckit/sdk-react": "^3.0.5",
33
+ "@kuckit/domain": "^3.0.6",
34
+ "@kuckit/sdk": "^3.0.6",
35
+ "@kuckit/sdk-react": "^3.0.6",
36
36
  "react": "^18 || ^19",
37
37
  "typescript": "^5",
38
38
  "express": "^4 || ^5"