-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "metricflow",
"version": "0.1.0",
"type": "module",
"description": "Farcaster social engagement agent that rewards likes and recasts with on-chain actions on Base",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node --max-old-space-size=256 dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"setup": "ts-node scripts/setup.ts"
},
"dependencies": {
"@coinbase/cdp-sdk": "^1.10.0",
"@langchain/anthropic": "^0.3.0",
"@langchain/langgraph": "^0.2.0",
"@neynar/nodejs-sdk": "^2.0.0",
"axios": "^1.13.6",
"dotenv": "^16.6.1",
"express": "^4.22.1",
"graphql": "^16.13.1",
"jose": "^5.10.0",
"winston": "^3.19.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/jest": "^29.5.10",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"keywords": [
"farcaster",
"base",
"blockchain",
"agentkit",
"web3",
"social"
],
"author": "isaaco3349",
"license": "MIT"
}