-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 737 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 737 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
30
31
32
33
34
{
"name": "fc-block-bot",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "bun src/index.ts",
"dev": "bun src/index.ts --watch",
"scrape": "bun scripts/scraper.ts",
"generate": "bun scripts/generateSignerUuid.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.5.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@upstash/redis": "^1.34.0",
"axios": "^1.7.7",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"uni-farcaster-sdk": "^0.0.25",
"zod": "^3.23.8"
},
"engines": {
"npm": ">=10.7.0",
"node": ">=22.2.0",
"pnpm": ">=8.15.3"
}
}