forked from voorhoede/datocms-plugin-extended-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "datocms-plugin-extended-seo",
"homepage": "https://github.com/voorhoede/datocms-plugin-extended-seo",
"version": "1.1.0",
"description": "Extends SEO meta field",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --port 5000",
"build": "NODE_ENV=production webpack --progress",
"addToProject": "yo datocms-plugin:add-to-project",
"prepublishOnly": "rimraf lib dist && mkdir dist && npm run build",
"lint": "eslint \"./src/*.js\"",
"test": "echo 1"
},
"keywords": [
"datocms",
"datocms-plugin",
"field-editor",
"seo-field"
],
"files": [
"dist",
"docs"
],
"author": "Voorhoede",
"license": "MIT",
"datoCmsPlugin": {
"title": "Extended Seo",
"previewImage": "docs/preview.gif",
"coverImage": "docs/cover.png",
"entryPoint": "dist/index.html",
"pluginType": "field_editor",
"fieldTypes": [
"seo"
],
"parameters": {
"global": [
{
"id": "datoApiToken",
"label": "DatoCMS API Token",
"type": "string",
"required": true,
"default": false,
"hint": "Enter your DatoCMS API read-only token used to fetch images from your DatoCMS media library."
}
],
"instance": [
{
"id": "canEdit",
"label": "Editor can edit field",
"type": "boolean",
"required": false,
"default": true,
"hint": "When this is turned on a editor can edit the title and description fields of this seo block."
},
{
"id": "defaultTitleField",
"label": "Default title fields",
"type": "string",
"required": false,
"default": "",
"hint": "This needs to be a string corresponding to the name of the title field (string field)"
},
{
"id": "defaultDescriptionField",
"label": "Default description fields",
"type": "string",
"required": false,
"default": "",
"hint": "This needs to be a string corresponding to the name of the description field (string field)"
},
{
"id": "defaultImageField",
"label": "Default image fields",
"type": "string",
"required": false,
"default": "",
"hint": "This needs to be a string corresponding to the name of the image field (image field)"
}
]
}
},
"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/preset-react": "^7.10.4",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.20.6",
"generator-datocms-plugin": "^1.0.24",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"serve": "^11.3.2",
"style-loader": "^0.23.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10",
"yo": "^3.1.1"
},
"dependencies": {
"datocms-client": "^3.2.0",
"html-webpack-tags-plugin": "^2.0.17",
"react": "16.12.0",
"react-dom": "16.12.0"
}
}