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
111 lines (111 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@assistant-ui/react",
"description": "Typescript/React library for AI Chat",
"keywords": [
"radix-ui",
"nextjs",
"vercel",
"ai-sdk",
"react",
"components",
"ui",
"frontend",
"tailwind",
"shadcn",
"assistant",
"openai",
"ai",
"chat",
"chatbot",
"copilot",
"ai-chat",
"ai-chatbot",
"ai-assistant",
"ai-copilot",
"chatgpt",
"gpt4",
"gpt-4",
"conversational-ui",
"conversational-ai"
],
"version": "0.10.6",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"internal",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsx scripts/build.mts",
"test": "vitest run",
"test:watch": "vitest",
"test:mutation": "stryker run",
"lint": "eslint ."
},
"dependencies": {
"@radix-ui/primitive": "^1.1.2",
"@radix-ui/react-compose-refs": "^1.1.2",
"@radix-ui/react-context": "^1.1.2",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-primitive": "^2.1.0",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-use-callback-ref": "^1.1.1",
"@radix-ui/react-use-escape-keydown": "^1.1.1",
"@standard-schema/spec": "^1.0.0",
"assistant-stream": "^0.2.5",
"json-schema": "^0.4.0",
"nanoid": "5.1.5",
"react-textarea-autosize": "^8.5.9",
"zod": "^3.24.3",
"zustand": "^5.0.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^18 || ^19 || ^19.0.0-rc",
"react-dom": "^18 || ^19 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"@assistant-ui/x-buildutils": "workspace:*",
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.14.1",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"tsx": "^4.19.3",
"vitest": "^3.1.2"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://www.assistant-ui.com/",
"repository": {
"type": "git",
"url": "https://github.com/assistant-ui/assistant-ui/tree/main/packages/react"
},
"bugs": {
"url": "https://github.com/assistant-ui/assistant-ui/issues"
}
}