-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "bitte-agents-proxy-backend",
"version": "0.1.0",
"description": "XMTP Message Listener for Bitte Agent",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch server.ts",
"start": "bun clean-installations && bun wipe-db && bun server.ts",
"gen-keys": "bun scripts/gen-keys",
"clean-installations": "bun scripts/clean-installations",
"wipe-db": "bun scripts/wipe-db",
"check": "biome check",
"fix": "biome check --write"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"@ai-sdk/provider-utils": "2.2.8",
"@xmtp/agent-sdk": "^1.1.7",
"@xmtp/content-type-group-updated": "^2.0.2",
"@xmtp/content-type-reaction": "^2.0.2",
"@xmtp/content-type-reply": "^2.0.2",
"@xmtp/content-type-text": "^2.0.2",
"@xmtp/content-type-transaction-reference": "^2.0.2",
"@xmtp/content-type-wallet-send-calls": "^2.0.0",
"ai": "4.3.19",
"dotenv": "^17.2.0",
"uint8arrays": "^5.1.0",
"viem": "^2.31.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@bitte-ai/types": "^0.8.0",
"@types/node": "^22.18.0",
"typescript": "^5.8.3"
},
"author": "Bitte",
"license": "ISC",
"engines": {
"node": ">=20"
},
"packageManager": "bun@1.2.21"
}