-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 977 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 977 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "aws-lambda-compressor",
"version": "1.0.0",
"description": "Bypass AWS Lambda's 50MB deployment limit using Brotli compression",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aws-lambda-compressor": "dist/cli.js"
},
"files": [
"dist",
"layer"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"aws",
"lambda",
"brotli",
"compression",
"deployment",
"serverless"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aortmann/aws-lambda-compressor.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^12.1.0",
"glob": "^10.4.5"
},
"devDependencies": {
"@types/archiver": "^6.0.3",
"@types/node": "^20.14.0",
"typescript": "^5.5.0",
"vitest": "^1.6.0"
}
}