-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "nanaban",
"version": "4.2.1",
"type": "module",
"description": "Image generation from the terminal — GPT Image 2 (free on ChatGPT Plus/Pro via Codex OAuth), Nano Banana (Gemini), and GPT-5 Image, routed through one CLI.",
"bin": {
"nanaban": "./bin/nanaban.mjs"
},
"files": [
"bin/",
"src/",
"gemini-image.ts",
"generate-image.ts",
"README.md"
],
"scripts": {
"test": "node --import tsx/esm --test tests/*.test.mts",
"build:binaries": "./scripts/build-binaries.sh"
},
"keywords": [
"image-generation",
"gpt-image-2",
"gpt-image",
"gemini",
"openai",
"openrouter",
"chatgpt",
"codex",
"nano-banana",
"cli",
"ai",
"text-to-image"
],
"author": "Boris Djordjevic",
"repository": {
"type": "git",
"url": "https://github.com/paperfoot/nanaban-cli.git"
},
"homepage": "https://github.com/paperfoot/nanaban-cli#readme",
"bugs": {
"url": "https://github.com/paperfoot/nanaban-cli/issues"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@google/genai": "^1.0.0",
"@types/node": "^25.0.3",
"commander": "^14.0.0",
"google-auth-library": "^9.0.0",
"nanospinner": "^1.2.0",
"picocolors": "^1.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}