-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "strapi-plugin-image-optimizer",
"version": "2.2.1",
"description": "Optimize your images for desktop, tablet and mobile and different image formats.",
"homepage": "https://github.com/marlokessler/strapi-plugin-image-optimizer#readme",
"license": "MIT",
"main": "strapi-server.js",
"strapi": {
"displayName": "Image Optimizer",
"name": "image-optimizer",
"description": "Optimize your images for desktop, tablet and mobile and different image formats.",
"kind": "plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/marlokessler/strapi-plugin-image-optimizer.git"
},
"bugs": {
"url": "https://github.com/marlokessler/strapi-plugin-image-optimizer/issues"
},
"author": {
"name": "Marlo Kessler (https://github.com/marlokessler)"
},
"maintainers": [
{
"name": "Marlo Kessler (https://github.com/marlokessler)"
}
],
"keywords": [
"strapi",
"image-optimize",
"image",
"optimize",
"responsive"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
]
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"devDependencies": {
"@strapi/typescript-utils": "^4.20.5",
"install-peers": "^1.0.4",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@strapi/core": "*",
"@strapi/strapi": "^4.20.5",
"@strapi/utils": "^4.20.5",
"yup": "^1.4.0"
},
"scripts": {
"add:apple_arm": "npm_config_build_from_source=true yarn add",
"install:apple_arm": "npm_config_build_from_source=true yarn install",
"upgrade:apple_arm": "npm_config_build_from_source=true yarn upgrade",
"develop": "tsc -w",
"build": "tsc"
}
}