-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 990 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 990 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
35
36
37
{
"name": "flowb",
"version": "1.0.0",
"description": "FlowB - FlowBond's core agent service",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "tsx test.ts",
"docs:dev": "cd docs && npx vitepress dev",
"docs:build": "cd docs && npx vitepress build"
},
"dependencies": {
"@coinbase/agentkit": "^0.10.4",
"@farcaster/miniapp-node": "^0.1.13",
"@farcaster/quick-auth": "^0.0.8",
"@fastify/cors": "^11.0.0",
"@fastify/rate-limit": "^10.3.0",
"@grammyjs/storage-supabase": "^2.5.0",
"@supabase/supabase-js": "^2.95.3",
"cheerio": "^1.2.0",
"dotenv": "^16.4.0",
"fastify": "^5.2.0",
"grammy": "^1.35.0",
"qrcode": "^1.5.4",
"resend": "^6.9.3",
"stripe": "^20.4.1",
"svix": "^1.88.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"tsx": "^4.19.0",
"typescript": "^5.3.0"
}
}