-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.56 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
112
113
114
115
{
"name": "@buildlayer/ai-react",
"version": "0.2.8",
"description": "React UI components for AI chat assistants",
"keywords": [
"react",
"ai",
"chat",
"ui",
"components",
"openai",
"anthropic",
"ollama",
"mistral",
"grok",
"llm",
"chatbot",
"conversation",
"streaming",
"tools",
"function-calling",
"session-management",
"state-management",
"headless",
"sdk",
"typescript",
"javascript",
"tailwind",
"buildlayer",
"ai-ui",
"react-hooks",
"context"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles": "./dist/style.css",
"./dist/style.css": "./dist/style.css",
"./css": "./dist/style.css"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"sideEffects": [
"./dist/style.css",
"./dist/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/BuildLayer/ai-react"
},
"homepage": "https://buildlayer.dev/projects/ai-ui",
"bugs": {
"url": "https://github.com/BuildLayer/ai-react/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite dev",
"preview": "vite preview",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0"
},
"dependencies": {
"@buildlayer/ai-core": "^0.2.2",
"@tailwindcss/postcss": "^4.1.12",
"clsx": "^2.0.0",
"postcss": "^8.0.0",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"@storybook/react": "^7.0.0",
"@storybook/react-vite": "^7.0.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.11.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.0.0",
"@vitejs/plugin-react": "^4.7.0",
"happy-dom": "^18.0.1",
"jsdom": "^24.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"storybook": "^7.0.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vite": "^5.4.19",
"vite-plugin-dts": "^4.3.0",
"vitest": "^1.0.0"
}
}