-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 KB
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
{
"name": "vispyr-cli",
"version": "1.0.0",
"description": "Command Line Interface for AWS Deployment",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/src/index.js",
"dev": "tsx src/index.ts",
"build": "rm -rf dist && npx tsc -b",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.848.0",
"@aws-sdk/client-ec2": "^3.852.0",
"@aws-sdk/client-ec2-instance-connect": "^3.856.0",
"@aws-sdk/client-s3": "^3.850.0",
"@aws-sdk/client-ssm": "^3.859.0",
"@aws-sdk/client-sts": "^3.848.0",
"@aws-sdk/credential-provider-node": "^3.848.0",
"@aws-sdk/credential-providers": "^3.848.0",
"aws-cdk": "^2.1024.0",
"aws-cdk-lib": "^2.206.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"fs-extra": "^11.3.0",
"inquirer": "^12.8.2",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.1.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}