forked from danestves/strapi-plugin-preview-content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "strapi-plugin-preview-content",
"version": "0.2.78",
"description": "Preview your content with custom URL.",
"main": "admin/main/index.js",
"strapi": {
"name": "Preview Content",
"icon": "link",
"description": "Preview your content with custom URL."
},
"repository": {
"type": "git",
"url": "https://github.com/danestves/strapi-plugin-preview-content.git"
},
"files": [
"admin",
"config",
"controllers",
"services"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"author": {
"name": "Daniel Esteves",
"email": "[email protected]",
"url": "https://danestves.com"
},
"maintainers": [
{
"name": "Daniel Esteves",
"email": "[email protected]",
"url": "https://danestves.com"
}
],
"engines": {
"node": ">=10.16.0 <=14.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@types/koa": "^2.11.6",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.14",
"typescript": "^4.1.3"
}
}