-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1 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
{
"name": "@lamemind/react-agent-ts",
"version": "2.0.4",
"homepage": "https://github.com/lamemind/react-agent-ts#readme",
"description": "Streaming ReAct agent in typescript with multiple LLM providers",
"author": "lamemind",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"keywords": [
"react",
"ai",
"agent",
"llm",
"anthropic",
"chatgpt",
"gemini",
"tool",
"fuction",
"calling"
],
"repository": {
"type": "git",
"url": "https://github.com/lamemind/react-agent-ts"
},
"bugs": {
"url": "https://github.com/lamemind/react-agent-ts/issues"
},
"dependencies": {
"@langchain/core": "^0.3.57",
"zod": "^3.25.32"
},
"devDependencies": {
"@types/node": "^24.0.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}