-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 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
{
"name": "genui-widget",
"version": "0.7.3",
"type": "module",
"description": "An embeddable chat widget that lets your AI chatbots render rich, interactive UI like buttons, forms, charts, cards and more instead of plain text. Works out of the box with LangGraph/LangChain and n8n.",
"main": "./dist/genui-widget.umd.js",
"module": "./dist/genui-widget.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/genui-widget.es.js",
"require": "./dist/genui-widget.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src"
},
"dependencies": {
"@crayonai/react-ui": "^0.9.13",
"@crayonai/stream": "^0.6.4",
"@thesysai/genui-sdk": "^0.7.16"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript": "^5",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.7"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node"
},
"repository": {
"type": "git",
"url": "https://github.com/thesysdev/genui-widget.git"
}
}