-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.46 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.46 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
77
78
79
80
81
{
"name": "next-mainnet-example",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier -c .prettierrc --write \"**/*.{ts,js,cjs,json,md}\"",
"format:check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"eval": "braintrust eval --external-packages playwright playwright-core chromium-bidi @browserbasehq/stagehand @composio/core @composio/vercel"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.13",
"@ai-sdk/gateway": "^3.0.14",
"@ai-sdk/google": "^3.0.8",
"@ai-sdk/mcp": "^0.0.12",
"@ai-sdk/openai": "^3.0.10",
"@chat-adapter/github": "^4.15.0",
"@chat-adapter/slack": "^4.15.0",
"@chat-adapter/state-ioredis": "^4.15.0",
"@chat-adapter/whatsapp": "^4.20.0",
"@coinbase/cdp-sdk": "^1.38.6",
"@coinbase/x402": "^0.7.3",
"@composio/core": "^0.3.4",
"@composio/vercel": "^0.3.4",
"@modelcontextprotocol/sdk": "^1.24.3",
"@privy-io/node": "^0.6.2",
"@supabase/supabase-js": "^2.86.0",
"@trigger.dev/sdk": "^4.4.3",
"@vercel/blob": "^2.3.1",
"@vercel/sandbox": "^1.3.1",
"ai": "6.0.0-beta.122",
"apify-client": "^2.20.0",
"arweave": "^1.15.7",
"autoevals": "^0.0.129",
"braintrust": "^0.4.9",
"bullmq": "^5.65.1",
"chat": "^4.15.0",
"googleapis": "^168.0.0",
"ioredis": "^5.8.2",
"marked": "^15.0.12",
"mcp-handler": "^1.0.4",
"ms": "^2.1.3",
"multiformats": "^13.4.1",
"next": "16.0.10",
"node-telegram-bot-api": "^0.66.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"resend": "^6.6.0",
"sharp": "^0.34.5",
"viem": "^2.21.26",
"x402-fetch": "^0.7.3",
"x402-next": "^0.7.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/ms": "^2.1.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-next": "15.1.7",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-prettier": "^5.2.6",
"postcss": "^8",
"prettier": "3.5.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^3.2.4"
}
}