@agno-hq/chat-react 0.1.0 → 0.1.1
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/README.md +3 -2
- package/dist/index.cjs +30 -35
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +30 -35
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agno-hq/chat-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Headless React hook (useAgnoChat) + UI components for streaming Agno agents, teams, and workflows from an AgentOS backend.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Agno",
|
|
@@ -37,8 +37,9 @@
|
|
|
37
37
|
],
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "tsup",
|
|
40
|
+
"test": "node --import tsx --test test/*.test.ts",
|
|
40
41
|
"typecheck": "tsc --noEmit",
|
|
41
|
-
"prepublishOnly": "npm run typecheck && npm run build"
|
|
42
|
+
"prepublishOnly": "npm test && npm run typecheck && npm run build"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
44
45
|
"react": ">=18",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"@types/react": "^18.3.0",
|
|
50
51
|
"@types/react-dom": "^18.3.0",
|
|
51
52
|
"tsup": "^8.5.1",
|
|
53
|
+
"tsx": "^4.23.12",
|
|
52
54
|
"typescript": "^5.4.0"
|
|
53
55
|
},
|
|
54
56
|
"publishConfig": {
|