-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.64 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
{
"name": "openreport",
"version": "0.1.2",
"packageManager": "bun@1.3.9",
"description": "A modern TUI to generate detailed AI-powered reports on software projects",
"type": "module",
"bin": {
"openreport": "./bin/openreport.ts"
},
"scripts": {
"start": "bun run bin/openreport.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"test": "bun test --coverage",
"check": "bun run typecheck && bun run lint && bun run test",
"dev": "bun run --watch bin/openreport.ts"
},
"keywords": ["cli", "tui", "ai", "report", "code-analysis", "ink", "bun", "openreport", "code-review", "security-audit", "multi-agent"],
"license": "MIT",
"author": "timiliris",
"repository": {
"type": "git",
"url": "git+https://github.com/timiliris/OpenReport.git"
},
"homepage": "https://github.com/timiliris/OpenReport#readme",
"bugs": {
"url": "https://github.com/timiliris/OpenReport/issues"
},
"engines": {
"bun": ">=1.0.0"
},
"files": [
"bin/",
"src/",
"package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@ai-sdk/anthropic": "^3.0.43",
"@ai-sdk/google": "^3.0.29",
"@ai-sdk/mistral": "^3.0.20",
"@ai-sdk/openai": "^3.0.28",
"@ai-sdk/provider": "^3.0.8",
"ai": "^6.0.85",
"chalk": "^5.4.0",
"clipanion": "^3.2.0",
"ignore": "^7.0.0",
"ink": "^6.7.0",
"ink-spinner": "^5.0.0",
"marked": "^17.0.2",
"marked-terminal": "^7.3.0",
"react": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@types/bun": "^1.3.9",
"@types/react": "^19.2.14",
"typescript": "^5.7.0"
}
}