-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.26 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-ai-agent-chat-sdk",
"version": "0.2.9",
"description": "A React library for building AI-powered chat interfaces with tool execution, configurable timeouts, retry logic, and custom renderers",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": "SourceWizard",
"type": "module",
"module": "./dist/index.js",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcewizard-ai/react-ai-agent-chat-sdk"
},
"homepage": "https://github.com/sourcewizard-ai/react-ai-agent-chat-sdk#readme",
"bugs": {
"url": "https://github.com/sourcewizard-ai/react-ai-agent-chat-sdk/issues"
},
"keywords": [
"react",
"ai",
"chat",
"agent",
"tools",
"typescript",
"conversation",
"chatbot",
"ai-sdk"
],
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.js",
"default": "./dist/config.js"
},
"./config-server": {
"types": "./dist/config-server.d.ts",
"import": "./dist/config-server.js",
"default": "./dist/config-server.js"
},
"./config-client": {
"types": "./dist/config-client.d.ts",
"import": "./dist/config-client.js",
"default": "./dist/config-client.js"
},
"./api": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js",
"default": "./dist/api.js"
},
"./storage": {
"types": "./dist/storage.d.ts",
"import": "./dist/storage.js",
"default": "./dist/storage.js"
},
"./agent-chat.css": "./dist/agent-chat.css"
},
"scripts": {
"build": "tsc && cp package.json README.md LICENSE agent-chat.css dist/",
"lint": "eslint ."
},
"dependencies": {
"@ai-sdk/react": "^2.0.28",
"@types/marked": "^6.0.0",
"ai": "^5.0.28",
"marked": "^16.2.1"
},
"peerDependencies": {
"@ai-sdk/anthropic": "^2.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "^5"
},
"private": false
}