forked from assistant-ui/assistant-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.67 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.67 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
{
"name": "@assistant-ui/react-langgraph",
"version": "0.7.13",
"description": "LangGraph adapter for assistant-ui",
"keywords": [
"langgraph",
"langchain",
"assistant-ui",
"react",
"ai",
"chat",
"agents"
],
"author": "AgentbaseAI Inc.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"aui-source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "aui-build",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"assistant-stream": "^0.2.46",
"uuid": "^14.0.0"
},
"peerDependencies": {
"@assistant-ui/react": "^0.11.53",
"@types/react": "*",
"react": "^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@assistant-ui/react": "workspace:*",
"@assistant-ui/x-buildutils": "workspace:*",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/uuid": "^11.0.0",
"jsdom": "^27.3.0",
"react": "19.2.3",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://www.assistant-ui.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/assistant-ui/assistant-ui.git",
"directory": "packages/react-langgraph"
},
"bugs": {
"url": "https://github.com/assistant-ui/assistant-ui/issues"
}
}