-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
39
40
41
42
43
44
45
46
47
48
{
"name": "ai-code-review",
"version": "0.0.1",
"private": true,
"description": "AI based code review tool",
"author": "Louis Liu",
"license": "GPL 3.0",
"homepage": "https://github.com/Louis-7/ai-code-review",
"keywords": [
"probot",
"chatGPT",
"AI"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/app/index.js",
"dev": "nodemon --exec \"npm start\"",
"test": "jest",
"build:action": "ncc build ./src/action.ts -o ./action",
"build:function": "ncc build ./serverless/azure-function/index.js -o ./azure-function && cp ./serverless/azure-function/function.json ./azure-function"
},
"dependencies": {
"@azure/identity": "^4.4.1",
"@azure/openai": "^2.0.0-beta.1",
"@probot/adapter-azure-functions": "^1.0.23",
"@probot/adapter-github-actions": "^3.1.3",
"minimatch": "^9.0.0",
"openai": "^4.56.0",
"probot": "^12.2.4",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@octokit/types": "^9.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@vercel/ncc": "^0.36.1",
"dotenv": "^16.4.5",
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^3.1.4",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 18.0.0"
}
}