-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 815 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
{
"name": "pr-enhance-agent",
"version": "1.0.0",
"description": "Configurable Gitee webhook bot that analyzes PRs and updates docs via LLM",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"dotenv": "^17.4.2",
"hono": "^4.6.0",
"js-yaml": "^4.1.0",
"openai": "^4.73.0",
"pg": "^8.21.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"simple-git": "^3.27.0",
"uuid": "^10.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}