@athenaintel/react 0.10.20 → 0.10.22
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/dist/index.cjs +18462 -20215
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +12 -3
- package/dist/index.js +18407 -20160
- package/dist/index.js.map +1 -1
- package/package.json +22 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athenaintel/react",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.22",
|
|
4
4
|
"description": "Athena React SDK — Build AI-powered chat applications with the Athena platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -22,6 +22,14 @@
|
|
|
22
22
|
"files": [
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "bun run build:css && vite build --watch",
|
|
27
|
+
"build": "vite build && bun run build:css",
|
|
28
|
+
"build:css": "cp src/styles.css dist/styles.css",
|
|
29
|
+
"typecheck": "tsgo --noEmit",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"preinstall": "node -e \"if(!(process.env.npm_config_user_agent||'').startsWith('bun/')){console.error('\\n✗ This monorepo requires bun. Run \\`bun install\\` at the repo root.\\n https://bun.com/docs/installation\\n');process.exit(1)}\""
|
|
32
|
+
},
|
|
25
33
|
"peerDependencies": {
|
|
26
34
|
"posthog-js": "^1.0.0",
|
|
27
35
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -41,17 +49,17 @@
|
|
|
41
49
|
"@assistant-ui/react-langgraph": "^0.13.0",
|
|
42
50
|
"@floating-ui/react": "^0.27.7",
|
|
43
51
|
"@tanstack/react-store": "^0.9.1",
|
|
44
|
-
"@tiptap/core": "^
|
|
45
|
-
"@tiptap/extension-link": "^
|
|
46
|
-
"@tiptap/extension-placeholder": "^
|
|
47
|
-
"@tiptap/extension-table": "^
|
|
48
|
-
"@tiptap/extension-table-cell": "^
|
|
49
|
-
"@tiptap/extension-table-header": "^
|
|
50
|
-
"@tiptap/extension-table-row": "^
|
|
51
|
-
"@tiptap/pm": "^
|
|
52
|
-
"@tiptap/react": "^
|
|
53
|
-
"@tiptap/starter-kit": "^
|
|
54
|
-
"@tiptap/suggestion": "^
|
|
52
|
+
"@tiptap/core": "^2.11",
|
|
53
|
+
"@tiptap/extension-link": "^2.11",
|
|
54
|
+
"@tiptap/extension-placeholder": "^2.11",
|
|
55
|
+
"@tiptap/extension-table": "^2.11",
|
|
56
|
+
"@tiptap/extension-table-cell": "^2.11",
|
|
57
|
+
"@tiptap/extension-table-header": "^2.11",
|
|
58
|
+
"@tiptap/extension-table-row": "^2.11",
|
|
59
|
+
"@tiptap/pm": "^2.11",
|
|
60
|
+
"@tiptap/react": "^2.11",
|
|
61
|
+
"@tiptap/starter-kit": "^2.11",
|
|
62
|
+
"@tiptap/suggestion": "^2.11",
|
|
55
63
|
"assistant-stream": "^0.3.3",
|
|
56
64
|
"class-variance-authority": "^0.7.1",
|
|
57
65
|
"clsx": "^2.1.1",
|
|
@@ -84,11 +92,5 @@
|
|
|
84
92
|
},
|
|
85
93
|
"sideEffects": [
|
|
86
94
|
"*.css"
|
|
87
|
-
]
|
|
88
|
-
|
|
89
|
-
"dev": "pnpm build:css && vite build --watch",
|
|
90
|
-
"build": "vite build && pnpm build:css",
|
|
91
|
-
"build:css": "cp src/styles.css dist/styles.css",
|
|
92
|
-
"typecheck": "tsc --noEmit"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
+
]
|
|
96
|
+
}
|