-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@vendia/live-lambda",
"version": "0.0.4",
"description": "A local development tool for AWS Lambda functions",
"main": "index.js",
"bin": {
"ll": "./bin/live_lambda",
"live-lambda": "./bin/live_lambda"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vendia/live-lambda.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16"
},
"contributors": [
"Jake Partusch <jake@vendia.com>"
],
"keywords": [
"AWS",
"Lambda",
"local development",
"Serverless"
],
"author": "Jake Partusch <jake@vendia.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vendia/live-lambda/issues"
},
"homepage": "https://github.com/vendia/live-lambda#readme",
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/node": "^20.14.9",
"@types/yargs": "^17.0.32"
},
"dependencies": {
"@aws-sdk/client-iot": "^3.609.0",
"@aws-sdk/client-lambda": "^3.609.0",
"@aws-sdk/util-utf8-browser": "^3.259.0",
"@tsconfig/node20": "^20.1.4",
"archiver": "^7.0.1",
"aws-iot-device-sdk-v2": "^1.19.5",
"consola": "^3.2.3",
"esbuild": "^0.23.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"yargs": "^17.7.2"
}
}