datocms-plugin-dall-e-asset-source 0.1.0 → 0.1.2
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 +4 -2
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
#
|
|
1
|
+
# DALL-E asset source
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Generate images using DALL-E, and insert them directly inside your DatoCMS project.
|
|
4
|
+
|
|
5
|
+
An OpenAI API key is required for this plugin to work. You can generate it [from here](https://beta.openai.com/docs/quickstart/add-your-api-key).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datocms-plugin-dall-e-asset-source",
|
|
3
3
|
"description": "Generate images using DALL-E, and insert them directly inside your DatoCMS project",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
|
@@ -16,13 +16,17 @@
|
|
|
16
16
|
"react-dom": "^18.2.0",
|
|
17
17
|
"react-final-form": "^6.5.9",
|
|
18
18
|
"react-scripts": "5.0.1",
|
|
19
|
-
"sanity-plugin-asset-source-dall-e": "^1.0.0",
|
|
20
19
|
"typescript": "^4.9.3"
|
|
21
20
|
},
|
|
22
21
|
"files": [
|
|
23
22
|
"build",
|
|
24
23
|
"docs"
|
|
25
24
|
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"datocms",
|
|
27
|
+
"datocms-plugin",
|
|
28
|
+
"dall-e"
|
|
29
|
+
],
|
|
26
30
|
"scripts": {
|
|
27
31
|
"start": "cross-env BROWSER='none' PUBLIC_URL='/' react-scripts start",
|
|
28
32
|
"build": "cross-env PUBLIC_URL='.' react-scripts build",
|