-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.14 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.14 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": "delreact-agent",
"author": "ans4175, karindralinux",
"license": "Apache-2.0",
"version": "1.7.3",
"type": "module",
"description": "DelReact: Extensible framework for building intelligent AI agents that can autonomously plan, reason, and act to accomplish complex, multi-step tasks, built on LangChain-LangGraph.",
"workspaces": [
"docs"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE",
"NOTICE",
"llm.txt"
],
"scripts": {
"demo": "npx tsx example/testAgent.ts",
"test": "npm run build && node example/testAgent.js",
"validate-llm-txt": "node example/validate-llm-txt.js",
"build:js": "tsup --config tsup.config.ts",
"build:types": "NODE_OPTIONS=--max-old-space-size=8192 tsup --config tsup.config.ts --dts",
"build": "npm install && npm run build:js",
"completeBuild": "npm run build:js && npm run build:types",
"safe-release": "npm run test && npm publish --access public",
"release": "npm run build && npm publish --access public",
"tag": "git tag v$(node -p \"require('./package.json').version\") && git commit -am 'push new tag' && git push && git push origin v$(node -p \"require('./package.json').version\")"
},
"dependencies": {
"@langchain/core": "^0.3.61",
"@langchain/google-genai": "^0.2.13",
"@langchain/langgraph": "^0.3.5",
"@langchain/openai": "^0.5.15",
"@modelcontextprotocol/sdk": "^1.17.2",
"exceljs": "^4.4.0",
"node-html-markdown": "^1.3.0",
"papaparse": "^5.5.3",
"pg": "^8.13.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.4",
"@types/papaparse": "^5.3.16",
"@types/pg": "^8.11.10",
"dotenv": "^17.2.1",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Delegasi-Tech/DelReact.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/Delegasi-Tech/DelReact/issues"
},
"homepage": "https://github.com/Delegasi-Tech/DelReact#readme"
}