Files
open-agent-platform/package.json
T
Tat Dat Duong 022ef4aed6 feat: avoid unnecessary rerenders
- use `react-hook-form` to re-render as little as possible
- switch to uncontrolled state to avoid rerendering whole thread while typing input
2025-05-13 08:42:41 -07:00

25 lines
473 B
JSON

{
"name": "open-agent-platform",
"author": "LangChain",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"turbo:command": "turbo",
"format": "turbo format",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix"
},
"devDependencies": {
"turbo": "^2.5.0",
"typescript": "^5"
},
"packageManager": "yarn@3.5.1",
"dependencies": {
"react-hook-form": "^7.56.3"
}
}