-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1022 Bytes
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
{
"name": "megalodon",
"version": "0.1.0",
"description": "CLI tool that deploys applications to cloud platforms",
"type": "module",
"main": "src/index.ts",
"bin": {
"meg": "./meg"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build --compile --minify --outfile meg src/index.ts && bash scripts/sign.sh meg",
"build:all": "bash scripts/build-all.sh",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:coverage:check": "bun test --coverage && bash scripts/check-coverage.sh"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.1029.0",
"@aws-sdk/client-elastic-beanstalk": "^3.600.0",
"@aws-sdk/client-lambda": "^3.600.0",
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/client-sts": "^3.600.0",
"@clack/prompts": "^1.2.0",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}