-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
{
"name": "base-autonomous-agents",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"agent:dev": "bun --watch lib/agents/server.ts",
"agent:start": "bun lib/agents/server.ts",
"agent:build": "bun build lib/agents/server.ts --outdir dist --target bun",
"test": "bun test",
"test:integration": "bun test --test-name-pattern integration",
"test:agent": "bun test --test-name-pattern",
"test:xmtp": "bun test --test-name-pattern xmtp"
},
"dependencies": {
"@coinbase/agentkit": "^0.8.1",
"@coinbase/agentkit-langchain": "^0.3.0",
"@coinbase/onchainkit": "^0.35.1",
"@heroicons/react": "^2.2.0",
"@langchain/core": "^0.3.0",
"@langchain/langgraph": "^0.2.20",
"@langchain/openai": "^0.3.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@rainbow-me/rainbowkit": "^2.2.6",
"@tanstack/react-query": "^5.80.6",
"@xmtp/browser-sdk": "^2.1.1",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"lucide-react": "^0.514.0",
"next": "15.1.3",
"next-themes": "^0.4.6",
"pino-pretty": "^13.0.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"uint8arrays": "^5.1.0",
"uuid": "^11.0.4",
"viem": "^2.22.17",
"wagmi": "^2.15.6",
"winston": "^3.17.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8.5.5",
"tailwindcss": "3",
"typescript": "^5"
},
"trustedDependencies": [
"@coinbase/agentkit",
"@coinbase/agentkit-langchain"
]
}