-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "@sladg/pdf-lambda",
"version": "1.1.0",
"description": "Pre-compiled python lambda used for PDF processing",
"repository": {
"type": "git",
"url": "https://github.com/sladg/pdf-lambda"
},
"license": "MIT",
"author": "Jan Soukup <jan@ssoukup.com>",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cli": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:main && npm run build:cdk && npm run build:cli",
"build:main": "tsup lib/index.ts --dts lib/index.ts",
"build:cdk": "tsup lib/cdk/app.ts --out-dir dist/cdk",
"build:cli": "tsup lib/cli.ts"
},
"dependencies": {
"@types/node": "^18.7.16"
},
"devDependencies": {
"commander": "^9.5.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.41.0-alpha",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.41.0-alpha",
"aws-cdk": "^2.41.0",
"aws-cdk-lib": "^2.41.0"
},
"engines": {
"node": ">=16.15"
},
"engineStrict": true
}