-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.72 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.72 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
68
69
70
71
72
73
74
75
76
{
"name": "@forestadmin/ai-proxy",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
}
},
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForestAdmin/agent-nodejs.git",
"directory": "packages/ai-proxy"
},
"dependencies": {
"zod": "^4.3.5"
},
"peerDependencies": {
"@langchain/community": "^1.1.4",
"@langchain/core": "^1.1.15",
"@langchain/langgraph": "^1.1.0",
"@langchain/mcp-adapters": "^1.1.1",
"@langchain/openai": "^1.2.2"
},
"peerDependenciesMeta": {
"@langchain/community": {
"optional": true
},
"@langchain/core": {
"optional": true
},
"@langchain/langgraph": {
"optional": true
},
"@langchain/mcp-adapters": {
"optional": true
},
"@langchain/openai": {
"optional": true
}
},
"devDependencies": {
"@forestadmin/datasource-toolkit": "1.50.1",
"@langchain/community": "1.1.4",
"@langchain/core": "1.1.15",
"@langchain/langgraph": "^1.1.0",
"@langchain/mcp-adapters": "1.1.1",
"@langchain/openai": "1.2.2",
"@modelcontextprotocol/sdk": "1.25.3",
"@types/express": "5.0.1",
"express": "5.1.0",
"node-zendesk": "6.0.1",
"openai": "^6.16.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf coverage dist",
"lint": "eslint src",
"test": "jest"
}
}