-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "langgraph-react-chatbot",
"version": "0.1.7",
"private": false,
"type": "module",
"main": "./dist-lib/index.js",
"module": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/izerui/langgraph-react-chatbot.git"
},
"license": "MIT",
"files": [
"dist-lib"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"build:lib": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json",
"check:lib": "node ./scripts/check-lib.mjs",
"prepublishOnly": "npm version patch --no-git-tag-version && pnpm check:lib"
},
"dependencies": {
"@langchain/langgraph-sdk": "^1.6.5",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-tooltip": "^1.1.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"nanoid": "^5.1.6",
"streamdown": "^2.5.0",
"@streamdown/code": "^1.1.1",
"@streamdown/mermaid": "^1.0.2",
"tailwind-merge": "^3.5.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1",
"typescript": "~6.0.2",
"vite": "^8.0.4",
"vite-plugin-lib-inject-css": "^2.2.2"
}
}