{
  "name": "datocms-plugin-cross-site-data",
  "homepage": "https://github.com/",
  "version": "0.1.0",
  "description": "A plugin that allows copying data from another site",
  "main": "index.js",
  "scripts": {
    "start": "concurrently \"yarn dev\" \"yarn localtunnel\"",
    "localtunnel": "lt -s datocms-plugin-inverse-relationships --port 5000",
    "dev": "NODE_ENV=development webpack-dev-server --port 5000",
    "dist": "NODE_ENV=production webpack --progress",
    "prepublishOnly": "rimraf lib dist && mkdir dist && npm run dist",
    "test": "echo 1"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "datocms",
    "datocms-plugin",
    "sidebar-widget"
  ],
  "author": "Lean Panda",
  "license": "ISC",
  "datoCmsPlugin": {
    "title": "Cross-site Data",
    "previewImage": "docs/preview.png",
    "coverImage": "docs/cover.png",
    "entryPoint": "dist/index.html",
    "pluginType": "field_editor",
    "fieldTypes": [
      "string"
    ],
    "parameters": {
      "instance": [
        {
          "id": "datoCmsApiToken",
          "label": "DatoCMS API Token",
          "type": "string",
          "required": true,
          "hint": "The DatoCMS API read-only token to use to query the other site, <a href=\"/admin/access_tokens\">get it here</a>"
        },
        {
          "id": "title",
          "label": "Widget title",
          "type": "string",
          "required": true,
          "default": "Copy data"
        },
        {
          "id": "itemTypeApiKey",
          "label": "Model ID",
          "type": "string",
          "required": true,
          "hint": "The model you want to access data from (ie. <code>post</code>)"
        },
        {
          "id": "fieldApiKey",
          "label": "Field ID",
          "type": "string",
          "required": true,
          "hint": "The field you want to access data from (ie. <code>author</code>)"
        }
      ]
    }
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0-beta.54",
    "@babel/core": "^7.0.0-beta.54",
    "@babel/preset-env": "^7.0.0-beta.54",
    "@babel/register": "^7.0.0-beta.54",
    "babel-eslint": "^8.2.6",
    "babel-loader": "^8.0.0-beta",
    "concurrently": "^4.0.1",
    "css-loader": "^1.0.0",
    "eslint": "^5.3.0",
    "eslint-config-airbnb-base": "13.1.0",
    "eslint-import-resolver-webpack": "^0.10.1",
    "eslint-loader": "^2.1.0",
    "eslint-plugin-import": "^2.14.0",
    "generator-datocms-plugin": "^1.0.3",
    "html-webpack-include-assets-plugin": "^1.0.5",
    "html-webpack-inline-source-plugin": "^0.0.10",
    "html-webpack-plugin": "^3.2.0",
    "localtunnel": "^1.9.1",
    "mini-css-extract-plugin": "^0.4.3",
    "node-sass": "^4.12.0",
    "sass-loader": "^7.1.0",
    "style-loader": "^0.23.0",
    "webpack": "^4.16.1",
    "webpack-cli": "^3.1.0",
    "webpack-dev-server": "^3.1.10",
    "yo": "^2.0.5"
  },
  "dependencies": {
    "datocms-client": "^0.7.5"
  }
}
