-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ai_code_review",
"version": "2.0.0",
"description": "A simple auto reviewer for your code",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "ts-node-esm index.ts",
"build": "tsc && mkdir dist/public && cp public/* dist/public",
"prepublishOnly": "npm run build",
"build:test": "rm -rf ./dist && npm run build && npm pack && npm i -g ./ai_code_review-1.2.4.tgz"
},
"bin": {
"code_review": "./dist/index.js"
},
"keywords": [
"code-review",
"auto-review",
"cli"
],
"author": "Jonathan Atiene, [email protected]",
"license": "ISC",
"devDependencies": {
"@types/cli-spinner": "^0.2.1",
"@types/configstore": "5.0.0",
"@types/diff": "^5.0.3",
"@types/inquirer": "^9.0.3",
"@types/markdown-it": "^13.0.0",
"@types/node": "^18.14.6",
"@types/remarkable": "^2.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"axios": "^1.3.4",
"chalk": "4.1.0",
"cli-spinner": "^0.2.10",
"cli-spinners": "^2.9.0",
"configstore": "5.0.0",
"diff": "^5.1.0",
"highlight.js": "^11.8.0",
"inquirer": "^8.2.6",
"inquirer-file-tree-selection-prompt": "^1.0.19",
"langchain": "^0.0.127",
"openai": "^3.3.0",
"remarkable": "^2.0.1",
"simple-git": "^3.17.0",
"zod": "^3.21.4"
},
"repository": {
"type": "git",
"url": "https://github.com/bemijonathan/code-critique-ai.git"
},
"bugs": {
"url": "https://github.com/bemijonathan/code-critique-ai/issues"
},
"homepage": "https://github.com/bemijonathan/code-critique-ai#readme"
}