-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 979 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 979 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
38
39
{
"name": "contribot",
"version": "0.1.0",
"description": "Auto-contribute to GitHub open-source repositories using Claude Code",
"type": "module",
"bin": {
"contribot": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@iarna/toml": "^3.0.0",
"better-sqlite3": "^11.7.0",
"commander": "^13.1.0",
"drizzle-orm": "^0.38.0",
"fastify": "^5.2.0",
"@fastify/static": "^8.1.0",
"node-cron": "^3.0.3",
"p-queue": "^8.1.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/node-cron": "^3.0.11",
"drizzle-kit": "^0.30.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"pnpm": {
"onlyBuiltDependencies": ["better-sqlite3", "esbuild"]
}
}