-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
60
61
62
{
"name": "lambda-console-cli",
"version": "1.0.8",
"description": "A CLI to run shell commands or interact with your application on Lambda.",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rails-lambda/lambda-console"
},
"engines": {
"node": ">=14.0.0"
},
"bin": {
"lambda-console-cli": "./index.mjs"
},
"keywords": [
"aws",
"lambda",
"console",
"cli"
],
"pkg": {
"targets": [
"node14-linux-x64",
"node14-linux-arm64",
"node14-macos-x64",
"node14-macos-arm64",
"node14-win-x64"
],
"outputPath": "lambda-console-cli"
},
"scripts": {
"start": "node index.js",
"esbuild": "npx esbuild index.mjs --bundle --platform=node --outfile=dist/lambda-console-cli.mjs --define:process.env.ESBUILD=\"1\"",
"pkg": "pkg . --out-path dist",
"build:pkg": "npm-run-all esbuild pkg"
},
"author": {
"name": "Ken Collins",
"email": "[email protected]",
"url": "https://github.com/metaskills"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-account": "^3.350.0",
"@aws-sdk/client-lambda": "^3.350.0",
"@aws-sdk/shared-ini-file-loader": "^3.347.0",
"@inquirer/prompts": "^2.1.1",
"@inquirer/select": "^1.2.1",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"inquirer": "^9.2.7",
"inquirer-autocomplete-prompt": "^3.0.0",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"esbuild": "^0.18.4",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.1"
}
}