-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 997 Bytes
/
package.json
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
{
"name": "tool-calling-llm",
"version": "0.1.3",
"description": "Convert any LangChain Chat Model into a Tool Calling LLM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"langchain",
"genai",
"tool calling"
],
"author": "Karim Lalani <jimmy00784@gmail.com>",
"license": "Apache-2.0",
"type": "commonjs",
"exports": {
".": "./dist/index.js"
},
"dependencies": {
"langchain": "^0.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@langchain/cloudflare": "^0.1.0",
"@langchain/ollama": "^0.1.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"cloudflare": "^3.5.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}