-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "@coinbase/cdp-langchain-chatbot-example",
"description": "CDP Agentkit Node.js SDK Chatbot Example",
"version": "1.0.0",
"author": "Coinbase Inc.",
"license": "Apache-2.0",
"scripts": {
"start": "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": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-provider-node": "^3.744.0",
"@aws-sdk/types": "^3.734.0",
"@coinbase/agentkit": "^0.1.1",
"@coinbase/agentkit-langchain": "^0.1.0",
"@coinbase/cdp-agentkit-core": "^0.0.14",
"@coinbase/cdp-langchain": "^0.0.15",
"@langchain/community": "^0.3.29",
"@langchain/core": "^0.3.19",
"@langchain/google-genai": "^0.1.8",
"@langchain/langgraph": "^0.2.21",
"@langchain/openai": "^0.3.14",
"coinbase": "^2.0.8",
"discord.js": "^14.17.3",
"dotenv": "^16.4.5",
"zod": "^3.22.4"
},
"devDependencies": {
"nodemon": "^3.1.0",
"ts-node": "^10.9.2"
}
}