sidenetai-sdk 2.0.1 → 2.0.3
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/sidenetai-sdk.css +1 -1
- package/dist/sidenetai-sdk.es.js +56 -162
- package/dist/sidenetai-sdk.umd.js +11 -43
- package/package.json +25 -30
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sidenetai-sdk",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/sidenetai-sdk.umd.js",
|
|
7
7
|
"module": "dist/sidenetai-sdk.es.js",
|
|
@@ -17,35 +17,24 @@
|
|
|
17
17
|
"dist"
|
|
18
18
|
],
|
|
19
19
|
"peerDependencies": {
|
|
20
|
+
"@ai-sdk/react": ">=2.0.0",
|
|
21
|
+
"@assistant-ui/react": ">=0.9.0",
|
|
22
|
+
"@assistant-ui/react-data-stream": ">=0.9.0",
|
|
23
|
+
"@assistant-ui/react-markdown": ">=0.9.0",
|
|
24
|
+
"@assistant-ui/styles": ">=0.1.0",
|
|
25
|
+
"@heroicons/react": ">=2.0.0",
|
|
26
|
+
"@magicul/react-chat-stream": ">=0.5.0",
|
|
27
|
+
"@radix-ui/react-slot": ">=1.0.0",
|
|
28
|
+
"@radix-ui/react-tooltip": ">=1.0.0",
|
|
29
|
+
"ai": ">=5.0.0",
|
|
30
|
+
"framer-motion": ">=11.0.0",
|
|
31
|
+
"lucide-react": ">=0.480.0",
|
|
20
32
|
"react": "^18 || ^19",
|
|
21
33
|
"react-dom": "^18 || ^19",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"@assistant-ui/react-data-stream": "^0.9.0",
|
|
25
|
-
"@assistant-ui/react-markdown": "^0.9.0",
|
|
26
|
-
"@assistant-ui/styles": "^0.1.0",
|
|
27
|
-
"@copilotkit/react-core": "^1.0.0",
|
|
28
|
-
"@copilotkit/react-ui": "^1.0.0",
|
|
29
|
-
"@copilotkit/runtime": "^1.0.0",
|
|
30
|
-
"@magicul/react-chat-stream": "^0.5.0",
|
|
31
|
-
"@heroicons/react": "^2.0.0",
|
|
32
|
-
"@radix-ui/react-slot": "^1.0.0",
|
|
33
|
-
"@radix-ui/react-tooltip": "^1.0.0",
|
|
34
|
-
"framer-motion": "^11.0.0",
|
|
35
|
-
"lucide-react": "^0.480.0",
|
|
36
|
-
"react-resizable-panels": "^3.0.0",
|
|
37
|
-
"react-syntax-highlighter": "^15.5.0",
|
|
38
|
-
"ai": "^5.0.0"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"dev": "vite",
|
|
42
|
-
"build": "tsc -b && vite build",
|
|
43
|
-
"lint": "eslint .",
|
|
44
|
-
"preview": "vite preview"
|
|
34
|
+
"react-resizable-panels": ">=3.0.0",
|
|
35
|
+
"react-syntax-highlighter": ">=15.5.0"
|
|
45
36
|
},
|
|
46
37
|
"dependencies": {
|
|
47
|
-
"@ag-ui/mastra": "^0.0.10",
|
|
48
|
-
"@mastra/client-js": "^0.11.2",
|
|
49
38
|
"class-variance-authority": "^0.7.1",
|
|
50
39
|
"classnames": "^2.5.1",
|
|
51
40
|
"clsx": "^2.1.1",
|
|
@@ -56,16 +45,14 @@
|
|
|
56
45
|
"remark-gfm": "^4.0.1",
|
|
57
46
|
"sonner": "^2.0.7",
|
|
58
47
|
"tailwind-merge": "^3.3.1",
|
|
59
|
-
"use-hooks": "2.0.0-rc.5",
|
|
60
48
|
"usehooks-ts": "^3.1.1"
|
|
61
49
|
},
|
|
62
50
|
"devDependencies": {
|
|
63
51
|
"@eslint/js": "^9.33.0",
|
|
64
52
|
"@tailwindcss/postcss": "^4.1.12",
|
|
53
|
+
"@types/node": "^25.2.0",
|
|
65
54
|
"@types/react": "^19.1.10",
|
|
66
55
|
"@types/react-dom": "^19.1.7",
|
|
67
|
-
"react": "^19.1.1",
|
|
68
|
-
"react-dom": "^19.1.1",
|
|
69
56
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
70
57
|
"@vitejs/plugin-react": "^5.0.0",
|
|
71
58
|
"autoprefixer": "^10.4.21",
|
|
@@ -74,10 +61,18 @@
|
|
|
74
61
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
75
62
|
"globals": "^16.3.0",
|
|
76
63
|
"postcss": "^8.5.6",
|
|
64
|
+
"react": "^19.1.1",
|
|
65
|
+
"react-dom": "^19.1.1",
|
|
77
66
|
"serve": "^14.2.4",
|
|
78
67
|
"tailwindcss": "^4.1.12",
|
|
79
68
|
"typescript": "~5.8.3",
|
|
80
69
|
"typescript-eslint": "^8.39.1",
|
|
81
70
|
"vite": "^7.1.2"
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"dev": "vite",
|
|
74
|
+
"build": "tsc -b && vite build",
|
|
75
|
+
"lint": "eslint .",
|
|
76
|
+
"preview": "vite preview"
|
|
82
77
|
}
|
|
83
|
-
}
|
|
78
|
+
}
|