datocms-plugin-media-layouts 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.
@@ -0,0 +1,16 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>DatoCMS Plugin</title>
8
+ <script type="module" crossorigin src="./assets/index-C4_K7KwS.js"></script>
9
+ <link rel="stylesheet" crossorigin href="./assets/index-BrvH3ARS.css">
10
+ </head>
11
+
12
+ <body>
13
+ <div id="root"></div>
14
+ </body>
15
+
16
+ </html>
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
package/docs/.gitkeep ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "datocms-plugin-media-layouts",
3
+ "description": "A DatoCMS plugin that adds a field that allows you to select an asset together with a layout configuration",
4
+ "homepage": "https://github.com/datocms/plugins/media-layouts",
5
+ "private": false,
6
+ "version": "0.1.0",
7
+ "author": "Marcelo Finamor Vieira <marcelofinamorvieira@gmail.com>",
8
+ "type": "module",
9
+ "keywords": [
10
+ "datocms-plugin"
11
+ ],
12
+ "datoCmsPlugin": {
13
+ "title": "Media Layouts",
14
+ "coverImage": "docs/cover-1200x800.png",
15
+ "previewImage": "docs/preview.mp4",
16
+ "entryPoint": "dist/index.html",
17
+ "permissions": []
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "docs"
22
+ ],
23
+ "scripts": {
24
+ "dev": "vite",
25
+ "build": "tsc -b && vite build",
26
+ "preview": "vite preview",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "dependencies": {
30
+ "datocms-plugin-sdk": "*",
31
+ "datocms-react-ui": "*",
32
+ "react": "^18.3.1",
33
+ "react-dom": "^18.3.1"
34
+ },
35
+ "devDependencies": {
36
+ "@types/react": "^18.3.3",
37
+ "@types/react-dom": "^18.3.0",
38
+ "@vitejs/plugin-react": "^4.3.1",
39
+ "globals": "^15.9.0",
40
+ "typescript": "^5.5.3",
41
+ "vite": "^5.4.1"
42
+ }
43
+ }