-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.04 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
{
"name": "recoup-agent-apis",
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "commonjs",
"scripts": {
"start": "npx tsc && npx tsc-alias && nodemon --experimental-specifier-resolution=node --no-warnings ./dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "prettier --write app.ts lib controllers agents",
"update-types": "npx supabase gen types typescript --project-id godremdqwajrwazhbrue --schema public > types/database.types.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@browserbasehq/stagehand": "^1.10.1",
"@coinbase/coinbase-sdk": "^0.21.0",
"@coinbase/x402": "^0.7.3",
"@langchain/anthropic": "^0.3.15",
"@langchain/core": "^0.3.42",
"@langchain/langgraph": "^0.2.55",
"@playwright/test": "^1.49.1",
"@stackso/js-core": "^0.5.10",
"@supabase/supabase-js": "^2.47.9",
"@tavily/core": "^0.0.2",
"@trigger.dev/sdk": "^4.0.6",
"@types/cheerio": "^0.22.35",
"@types/stripe": "^8.0.417",
"@types/uuid": "^10.0.0",
"agent-twitter-client": "^0.0.16",
"apify-client": "^2.10.0",
"arweave": "^1.14.4",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"bullmq": "^5.61.0",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"ioredis": "^5.8.2",
"node-fetch": "^2.7.0",
"nodemon": "^3.1.7",
"openai": "^4.74.0",
"prettier": "^3.4.1",
"socket.io": "^4.8.1",
"stripe": "^18.5.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.0.5",
"viem": "^2.37.5",
"x402": "^0.7.3",
"x402-express": "^0.7.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@trigger.dev/build": "^4.0.6",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node-fetch": "^2.6.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.7.3"
}
}