-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.77 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
{
"name": "jstar-reviewer",
"version": "3.0.1",
"description": "Local-First, Context-Aware AI Code Reviewer - Works with any language",
"bin": {
"jstar": "bin/jstar.js"
},
"scripts": {
"build": "tsc",
"index:init": "ts-node scripts/indexer.ts --init",
"index:watch": "ts-node scripts/indexer.ts --watch",
"review": "ts-node scripts/reviewer.ts",
"audit": "ts-node scripts/audit.ts",
"chat": "ts-node scripts/chat.ts",
"detect": "ts-node scripts/detective.ts",
"test": "node -r ts-node/register test/test-detective.ts && node -r ts-node/register test/test-review-findings.ts && node -r ts-node/register test/test-audit.ts",
"prepare": "husky install"
},
"keywords": [
"code-review",
"ai",
"llm",
"cli",
"groq",
"gemini",
"static-analysis"
],
"author": "J Star Studios",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JStaRFilms/jstar-code-review.git"
},
"homepage": "https://github.com/JStaRFilms/jstar-code-review#readme",
"dependencies": {
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/groq": "^2.0.33",
"@google/generative-ai": "^0.24.1",
"ai": "^5.0.115",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"llamaindex": "^0.1.0",
"prompts": "^2.4.2",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"files": [
"bin/",
"scripts/",
"dist/",
"README.md"
],
"main": "setup.js",
"directories": {
"doc": "docs",
"test": "test"
},
"type": "commonjs",
"bugs": {
"url": "https://github.com/JStaRFilms/jstar-code-review/issues"
}
}