-
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) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 733 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": "aws-lambda-effect-runtime",
"version": "0.0.0",
"description": "Effect runtime for AWS Lambda",
"type": "module",
"dependencies": {
"@effect/platform": "^0.76.1",
"effect": "^3.12.12"
},
"peerDependencies": {
"@effect-aws/lambda": "^1.3.1"
},
"devDependencies": {
"@effect-aws/lambda": "^1.3.1",
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.13.5",
"esbuild": "^0.25.0",
"typescript": "^5.7.3"
},
"scripts": {
"compile": "sh scripts/compile.sh",
"build-layer": "rm -rf dist && pnpm compile && pnpm install --prod && sh scripts/build-layer.sh && pnpm install",
"publish-layer": "sh scripts/publish-layer.sh"
},
"packageManager": "pnpm@9.15.4"
}