forked from Umkus/lambda-layer-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 807 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 807 Bytes
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
{
"name": "lambda-layer-sharp",
"version": "1.1.0",
"repository": "git@github.com:Umkus/lambda-layer-sharp.git",
"license": "Apache License 2.0",
"module": "lambda-layer-sharp",
"devDependencies": {
"webpack-node-externals": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"sharp": "^0.32.1"
},
"scripts": {
"postinstall": "npm run install-arm && npm run build",
"install-arm": "npm install --prefix /tmp/sharp --arch=arm64 --platform=linux sharp && cp -R /tmp/sharp/node_modules/sharp node_modules/",
"build": "node ./node_modules/webpack/bin/webpack.js"
},
"engines": {
"node": ">=14"
},
"author": "Mykhailo Gorianskyi <goreanski@gmail.com>"
}