-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.09 KB
/
package.json
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
{
"name": "onit-xmtp-bot",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "bun build src/index.ts",
"db:generate": "bunx drizzle-kit generate:sqlite --out src/db/migrations --schema src/db/schema.ts",
"dev": "NODE_ENV=development bun --watch src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"test": "bun test",
"binary:download": "./dev/download-cli",
"check": "bunx @biomejs/biome check --apply .",
"lint": "bunx @biomejs/biome lint . --apply",
"format": "bunx @biomejs/biome format . --write"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@types/bun": "latest",
"bun-types": "latest",
"drizzle-kit": "^0.20.14",
"type-fest": "^4.14.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/cron": "^1.0.3",
"@safe-global/api-kit": "^2.2.0",
"@xmtp/grpc-api-client": "^0.2.4",
"@xmtp/xmtp-js": "^11.5.0",
"drizzle-orm": "^0.30.6",
"elysia": "^1.0.11",
"remeda": "^1.57.0",
"uuidv7": "^0.6.3",
"viem": "^2.9.5",
"zod": "^3.22.4"
}
}