-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "github-pr-bot-ai",
"version": "1.0.0",
"description": "A GitHub bot that provides AI-powered code reviews on PRs",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node_modules/.bin/tsc",
"local:build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"docker:build": "docker build -t github-pr-bot .",
"docker:run": "docker run -p 3000:8080 --env-file .env github-pr-bot",
"docker:local": "npm run docker:build && npm run docker:run",
"docker:debug": "docker run -it --entrypoint /bin/bash -p 3000:8080 --env-file .env github-pr-bot",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"dependencies": {
"@ai-sdk/google": "^1.1.20",
"ai": "^4.1.54",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"octokit": "^4.1.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.5.3",
"tsx": "^4.20.5",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=22"
},
"author": "",
"license": "MIT"
}