-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 749 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 749 Bytes
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
{
"name": "yield-pool-watcher",
"version": "0.1.0",
"description": "Real-time DeFi pool monitoring with block-level precision and x402 payments. Zero-config defaults perfect for x402scan users.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck"
},
"dependencies": {
"@lucid-dreams/agent-kit": "0.2.19",
"@hono/node-server": "^1.8.2",
"dotenv": "^16.3.1",
"ethers": "^6.10.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}