forked from aidar-freeed/ai-codereviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 819 Bytes
/
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
{
"name": "roast-my-code",
"version": "1.3.0",
"description": "mean and aggressive code reviews by ChatGPT",
"main": "lib/main.js",
"author": "Christina Martinez, based on work by Ville Saukkonen",
"license": "MIT",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/rest": "^19.0.7",
"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",
"typescript": "^5.0.2"
}
}