forked from villesau/ai-codereviewer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 914 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 914 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
{
"name": "open-ai-reviewer",
"version": "1.0.0",
"description": "Open AI powered code reviews",
"main": "lib/main.js",
"author": "Ville Saukkonen",
"license": "MIT",
"scripts": {
"build:tsc": "tsc",
"build:package": "ncc build -m --source-map --license licenses.txt",
"build:uglify": "terser dist/index.js --compress --mangle-props keep_quoted:strict",
"build": "yarn build:tsc && yarn build:package && yarn build:uglify",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/rest": "^19.0.7",
"axios": "^1.6.4",
"minimatch": "^7.4.2",
"openai": "^4.20.1",
"parse-diff": "^0.11.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@vercel/ncc": "^0.36.1",
"prettier": "^2.8.6",
"terser": "^5.26.0",
"typescript": "^5.0.2"
}
}