@djangocfg/imgai 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -1
- package/package.json +33 -12
package/README.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @djangocfg/imgai
|
|
2
2
|
|
|
3
|
+
> AI-powered image generation and optimization CLI for Next.js projects using OpenAI DALL-E and Claude Vision
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@djangocfg/imgai)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
**Part of [DjangoCFG](https://djangocfg.com)** — a modern Django framework for building production-ready SaaS applications. All `@djangocfg/*` packages are designed to work together, providing type-safe configuration, real-time features, and beautiful admin interfaces out of the box.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
3
12
|
AI-powered image generation & management for Next.js projects.
|
|
4
13
|
|
|
5
14
|
## Features
|
|
@@ -182,6 +191,14 @@ OPENAI_API_KEY=sk-... # Required for image generation
|
|
|
182
191
|
ANTHROPIC_API_KEY=sk-ant-... # Optional for prompt enhancement with Claude
|
|
183
192
|
```
|
|
184
193
|
|
|
194
|
+
## Documentation
|
|
195
|
+
|
|
196
|
+
Full documentation available at [djangocfg.com](https://djangocfg.com)
|
|
197
|
+
|
|
198
|
+
## Contributing
|
|
199
|
+
|
|
200
|
+
Issues and pull requests are welcome at [GitHub](https://github.com/markolofsen/django-cfg)
|
|
201
|
+
|
|
185
202
|
## License
|
|
186
203
|
|
|
187
|
-
MIT
|
|
204
|
+
MIT - see [LICENSE](./LICENSE) for details
|
package/package.json
CHANGED
|
@@ -1,7 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/imgai",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "AI-powered image generation
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "AI-powered image generation and optimization CLI for Next.js projects using OpenAI DALL-E and Claude Vision",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"image-generation",
|
|
8
|
+
"openai",
|
|
9
|
+
"dall-e",
|
|
10
|
+
"claude",
|
|
11
|
+
"anthropic",
|
|
12
|
+
"nextjs",
|
|
13
|
+
"typescript",
|
|
14
|
+
"cli",
|
|
15
|
+
"optimization",
|
|
16
|
+
"sharp",
|
|
17
|
+
"django"
|
|
18
|
+
],
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "DjangoCFG",
|
|
21
|
+
"url": "https://djangocfg.com"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://djangocfg.com",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/markolofsen/django-cfg.git",
|
|
27
|
+
"directory": "packages/imgai"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/markolofsen/django-cfg/issues"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
5
33
|
"type": "module",
|
|
6
34
|
"main": "./dist/index.cjs",
|
|
7
35
|
"module": "./dist/index.js",
|
|
@@ -51,14 +79,7 @@
|
|
|
51
79
|
"tsup": "^8.3.5",
|
|
52
80
|
"typescript": "^5.6.3"
|
|
53
81
|
},
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
"openai",
|
|
58
|
-
"claude",
|
|
59
|
-
"nextjs",
|
|
60
|
-
"typescript"
|
|
61
|
-
],
|
|
62
|
-
"author": "DjangoCFG",
|
|
63
|
-
"license": "MIT"
|
|
82
|
+
"publishConfig": {
|
|
83
|
+
"access": "public"
|
|
84
|
+
}
|
|
64
85
|
}
|