-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "image-extender",
"version": "1.0.0",
"private": true,
"description": "A web app that extends images in any direction using AI (Gemini via OpenRouter), with Poisson-blended seamless outpainting and a best-of-N variant picker.",
"keywords": [
"ai",
"image-extender",
"outpainting",
"openrouter",
"gemini",
"nano-banana",
"poisson-blending",
"nextjs",
"tailwindcss"
],
"author": "boona13",
"license": "MIT",
"homepage": "https://github.com/boona13/image-extender#readme",
"repository": {
"type": "git",
"url": "https://github.com/boona13/image-extender.git"
},
"bugs": {
"url": "https://github.com/boona13/image-extender/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"jszip": "^3.10.1",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
}
}