-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 882 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 882 Bytes
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
{
"name": "pr-visual",
"version": "1.0.14",
"description": "Generate visual infographics for PR diffs using Gemini",
"type": "module",
"bin": {
"pr-visual": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc && node dist/cli.js",
"test": "vitest run"
},
"keywords": [
"pr",
"visual",
"gemini",
"infographic"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gitethanwoo/pr-visual"
},
"dependencies": {
"@google/genai": "^1.34.0",
"@inquirer/prompts": "^8.1.0",
"chalk": "^5.6.2",
"google-auth-library": "^10.5.0",
"gradient-string": "^3.0.0",
"open": "^11.0.0",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}