-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 739 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 739 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
{
"name": "zai-image-proxy",
"version": "1.0.0",
"description": "OpenAI & Gemini compatible image generation API proxy powered by Z.AI",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"keywords": [
"openai",
"gemini",
"image-generation",
"ai-image",
"dall-e",
"imagen",
"api-proxy",
"z-ai",
"free-ai"
],
"author": "TheOwlKun",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TheOwlKun/zai-image-proxy"
},
"dependencies": {
"axios": "^1.7.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.21.0"
}
}