datocms-plugin-dall-e-asset-source 0.1.0

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/docs/cover.png ADDED
Binary file
package/docs/demo.mp4 ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "datocms-plugin-dall-e-asset-source",
3
+ "description": "Generate images using DALL-E, and insert them directly inside your DatoCMS project",
4
+ "version": "0.1.0",
5
+ "private": false,
6
+ "dependencies": {
7
+ "@fortawesome/free-solid-svg-icons": "^6.2.1",
8
+ "@fortawesome/react-fontawesome": "^0.2.0",
9
+ "@types/node": "^18.11.9",
10
+ "@types/react": "^18.0.25",
11
+ "@types/react-dom": "^18.0.9",
12
+ "datocms-plugin-sdk": "^0.6.15",
13
+ "datocms-react-ui": "^0.6.15",
14
+ "openai": "^3.1.0",
15
+ "react": "^18.2.0",
16
+ "react-dom": "^18.2.0",
17
+ "react-final-form": "^6.5.9",
18
+ "react-scripts": "5.0.1",
19
+ "sanity-plugin-asset-source-dall-e": "^1.0.0",
20
+ "typescript": "^4.9.3"
21
+ },
22
+ "files": [
23
+ "build",
24
+ "docs"
25
+ ],
26
+ "scripts": {
27
+ "start": "cross-env BROWSER='none' PUBLIC_URL='/' react-scripts start",
28
+ "build": "cross-env PUBLIC_URL='.' react-scripts build",
29
+ "test": "react-scripts test",
30
+ "eject": "react-scripts eject",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "eslintConfig": {
34
+ "extends": [
35
+ "react-app"
36
+ ]
37
+ },
38
+ "browserslist": {
39
+ "production": [
40
+ ">0.2%",
41
+ "not dead",
42
+ "not op_mini all"
43
+ ],
44
+ "development": [
45
+ "last 1 chrome version",
46
+ "last 1 firefox version",
47
+ "last 1 safari version"
48
+ ]
49
+ },
50
+ "devDependencies": {
51
+ "cross-env": "^7.0.3"
52
+ },
53
+ "datoCmsPlugin": {
54
+ "title": "DALL-E Asset Source",
55
+ "previewImage": "docs/demo.mp4",
56
+ "coverImage": "docs/cover.png",
57
+ "entryPoint": "build/index.html"
58
+ }
59
+ }