-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "@sladg/s3-lambda",
"version": "0.2.3",
"description": "Pre-compiled python lambda used for proxying ApiGateway requests to S3",
"repository": {
"type": "git",
"url": "https://github.com/sladg/s3-lambda"
},
"license": "MIT",
"author": "Jan Soukup <[email protected]>",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cli": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "npm run build:main && npm run build:cdk && npm run build:cli && npm run build:handler",
"build:main": "tsup lib/index.ts --dts lib/index.ts",
"build:cdk": "tsup lib/cdk/app.ts --out-dir dist/cdk",
"build:handler": "tsup lib/s3-handler/index.ts --out-dir dist/s3-handler",
"build:cli": "tsup lib/cli.ts",
"postbuild": "zip -j ./dist/code.zip ./dist/s3-handler/index.js",
"commit": "npx --package cz-emoji-conventional --package commitizen -- cz",
"release": "npx --package @sladg/release-utils utils shipit --gitUser @sladg --gitEmail [email protected] --changelog"
},
"dependencies": {
"aws-sdk": "^2.1311.0",
"@types/node": "^18.7.16",
"@types/aws-lambda": "^8.10.110"
},
"devDependencies": {
"commander": "^9.5.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"aws-cdk": "^2.41.0",
"aws-cdk-lib": "^2.41.0"
},
"engines": {
"node": ">=16.15"
},
"engineStrict": true
}