-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1009 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
{
"name": "typescript-lambda-examples",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "biome lint src",
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"author": "Ricardo Cino",
"description": "A set of example AWS Lambda functions written in TypeScript demonstrating various event sources and best practices.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cino/aws-lambda-stubs.git"
},
"bugs": {
"url": "https://github.com/cino/aws-lambda-stubs/issues"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.31.0",
"@aws-lambda-powertools/metrics": "^2.31.0",
"@aws-lambda-powertools/tracer": "^2.31.0",
"@aws-sdk/client-secrets-manager": "^3.1006.0",
"axios": "^1.13.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/aws-lambda": "^8.10.161",
"type-fest": "^5.4.4",
"typescript": "^5.9.3"
}
}