forked from strapi-community/strapi-plugin-local-image-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.91 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
{
"name": "strapi-plugin-local-image-sharp",
"version": "1.7.0",
"description": "Dynamically resize, format and optimize images based on url modifiers",
"strapi": {
"displayName": "Local Image Sharp",
"name": "local-image-sharp",
"description": "Dynamically resize, format and optimize images based on url modifiers",
"required": false,
"kind": "plugin"
},
"keywords": [
"strapi",
"plugin",
"images",
"sharp",
"optimize",
"resize"
],
"files": [
"src",
"strapi-server.js"
],
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"release": "npx standard-version && git push --follow-tags origin main && npm publish"
},
"dependencies": {
"@koa/router": "^10.1.1",
"etag": "^1.8.1",
"ipx": "^0.9.10",
"ohash": "^1.0.0",
"qs": "^6.10.3",
"ufo": "^0.8.5"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@giscus/vue": "^2.2.6",
"@strapi-community/eslint-config": "^0.4.3",
"eslint": "8.20.0",
"vitepress": "^1.0.0-alpha.35"
},
"author": {
"name": "Sacha Stafyniak",
"email": "[email protected]",
"url": "https://digisquad.io"
},
"maintainers": [
{
"name": "Strapi Community",
"url": "https://github.com/strapi-community"
},
{
"name": "Sacha Stafyniak",
"email": "[email protected]",
"url": "https://digisquad.io",
"lead": true
}
],
"bugs": {
"url": "https://github.com/strapi-community/strapi-plugin-local-image-sharp/issues"
},
"homepage": "https://github.com/strapi-community/strapi-plugin-local-image-sharp",
"engines": {
"node": ">=14.x.x <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT"
}