-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 993 Bytes
/
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
{
"name": "cdk-sam-init",
"version": "0.0.6",
"author": "quintinchris",
"license": "MIT",
"homepage": "https://github.com/quintinchris/cdk-sam-init#readme",
"type": "module",
"description": "CLI to generate a SAM & CDK app",
"main": "build/cli.js",
"bin": {
"cdk-sam-init": "build/cli.js"
},
"scripts": {
"start": "ts-node src/cli.ts",
"prebuild": "rm -rf build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quintinchris/cdk-sam-init.git"
},
"keywords": [
"cdk",
"sam",
"aws"
],
"bugs": {
"url": "https://github.com/quintinchris/cdk-sam-init/issues"
},
"dependencies": {
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"prettier": "3.0.3"
}
}