-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.9 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ai-visual-code-review",
"version": "2.4.1",
"description": "Visual code review tool with AI integration for any Git repository",
"main": "server.js",
"bin": {
"ai-review": "bin/ai-review.js"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"build:css": "echo 'CSS build (placeholder for future Tailwind/PostCSS)'",
"build:js": "echo 'JS build (placeholder for future bundler)'",
"build": "npm run build:css && npm run build:js",
"serve": "node server.js",
"vscode:compile": "cd vscode-extension && npm run compile",
"vscode:watch": "cd vscode-extension && npm run watch",
"vscode:test": "cd vscode-extension && npm test",
"prepublishOnly": "npm test",
"generate:certs": "mkdir -p certs && openssl req -x509 -newkey rsa:4096 -keyout certs/key.pem -out certs/cert.pem -days 365 -nodes -subj '/CN=localhost'"
},
"keywords": [
"code-review",
"git",
"ai",
"diff",
"visual",
"review",
"chatgpt",
"claude",
"vscode"
],
"author": "Prakhar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PrakharMNNIT/ai-visual-code-review"
},
"homepage": "https://github.com/PrakharMNNIT/ai-visual-code-review#readme",
"bugs": {
"url": "https://github.com/PrakharMNNIT/ai-visual-code-review/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3",
"typescript": "5.9.3"
},
"files": [
"bin/",
"public/",
"services/",
"scripts/",
"src/",
"server.js",
"README.md",
"LICENSE"
]
}