-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "supersam",
"version": "1.0.1",
"description": "Use SAM CLI for Lambda functions deployed with CDK.",
"keywords": [
"aws",
"lambda",
"sam",
"sam-cli",
"cdk"
],
"author": {
"name": "Gillis Van Ginderacter",
"email": "[email protected]",
"url": "https://github.com/supergillis"
},
"repository": {
"type": "git",
"url": "https://github.com/supergillis/supersam.git"
},
"license": "GPLv3",
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "pnpm run build:lib && pnpm run build:bin",
"build:lib": "pnpx tsc -p tsconfig.json && pnpx tsc -p tsconfig.esm.json",
"build:bin": "pnpx esbuild --platform=node --target=node12 --minify --bundle --outdir=./bin ./src/cli.ts",
"lint": "pnpm run lint:typecheck && pnpm run lint:prettier",
"lint:typecheck": "pnpx tsc --noEmit",
"lint:prettier": "pnpx prettier --check --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"format:prettier": "pnpx prettier --write --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'"
},
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"bin": {
"supersam": "./bin/cli.js"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.1.0",
"@aws-sdk/client-lambda": "^3.1.0",
"@aws-sdk/credential-provider-node": "^3.7.0",
"@aws-sdk/types": "^3.6.1",
"chalk": "^4.1.0",
"execa": "^5.0.0",
"prepend-transform": "^0.0.1019",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.0.0",
"@types/yargs": "^16.0.0",
"esbuild": "^0.8.53",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.4"
}
}