forked from kopertop/cli-ai-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 796 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 796 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
34
35
36
37
38
39
40
{
"name": "auto-ai-review",
"version": "1.2.0",
"description": "AI-powered code review tool",
"type": "module",
"main": "dist/cli.js",
"bin": {
"aair": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/cli.js"
},
"keywords": [
"openai",
"code",
"ai"
],
"author": {
"name": "Søren Kottal",
"email": "snielsen43@gmail.com"
},
"license": "THE UNLICENSE",
"dependencies": {
"cli-markdown": "^3.0.5",
"commander": "^11.1.0",
"openai": "^4.24.1",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/node": "^20.10.6",
"tsx": "^3.13.0",
"typescript": "^5.3.3"
}
}