-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 943 Bytes
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
{
"name": "react-agent-hooks",
"version": "1.0.0-beta.30",
"type": "module",
"main": "dist/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"license": "MIT",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"dependencies": {
"openai": "^5.7.0",
"rxjs": "^7.8.2",
"yaml": "^2.8.0",
"zod-to-json-schema": "^3.24.5"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"prettier": "^3.6.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "~5.8.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.4",
"zod": "^3.25.67"
}
}