-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"name": "ai-code-review-assistant",
"version": "1.0.0",
"description": "Professional AI Code Review Assistant with React frontend and Python backend",
"main": "react_app.py",
"scripts": {
"start": "python react_app.py",
"dev": "python react_app.py",
"build-frontend": "cd frontend && npm run build",
"install-frontend": "cd frontend && npm install --legacy-peer-deps",
"setup": "npm run install-frontend && npm run build-frontend",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"code-review",
"ai",
"gemini",
"react",
"python",
"flask",
"git-diff",
"static-analysis"
],
"author": "AI Code Review Assistant",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/parthraninga/code-review-assistant"
},
"bugs": {
"url": "https://github.com/parthraninga/code-review-assistant/issues"
},
"homepage": "https://github.com/parthraninga/code-review-assistant#readme",
"engines": {
"node": ">=16.0.0",
"python": ">=3.8.0"
}
}