-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (26 loc) · 865 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
{
"name": "@coinbase/cdp-langchain-chatbot-example",
"description": "CDP Agentkit Node.js SDK Chatbot Example",
"version": "1.0.0",
"scripts": {
"start": "NODE_OPTIONS='--no-warnings' ts-node ./chatbot.ts",
"dev": "nodemon ./chatbot.ts",
"lint": "eslint -c .eslintrc.json *.ts",
"lint-fix": "eslint -c .eslintrc.json *.ts --fix",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format-check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\""
},
"dependencies": {
"@coinbase/cdp-agentkit-core": "^0.0.6",
"@coinbase/cdp-langchain": "^0.0.7",
"@langchain/langgraph": "^0.2.21",
"@langchain/openai": "^0.3.14",
"@langchain/core": "^0.3.19",
"dotenv": "^16.4.5",
"zod": "^3.22.4"
},
"devDependencies": {
"nodemon": "^3.1.0",
"ts-node": "^10.9.2"
}
}