-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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": "ezmc-cli",
"displayName": "EZMC CLI",
"version": "0.1.0",
"description": "CLI for self-hosting a Minecraft Java server with AWS Elastic Container Service",
"keywords": [
"Minecraft server",
"AWS",
"CLI",
"ECS"
],
"homepage": "https://jseashell.github.io/ezmc-cli",
"author": "jseashell",
"license": "MIT",
"engines": {
"node": ">=20.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jseashell/ezmc-cli.git"
},
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest --coverage",
"format": "prettier --write '**/*.{js,ts,yml,json}' --list-different"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.632.0",
"@aws-sdk/client-ec2": "^3.632.0",
"@aws-sdk/client-ecs": "^3.632.0",
"@aws-sdk/client-s3": "^3.632.0",
"@aws-sdk/client-sts": "^3.632.0",
"commander": "^12.1.0",
"copy-to-clipboard": "^3.3.3",
"ini": "^4.1.3",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@swc/core": "^1.7.11",
"@types/ini": "^4.1.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.3.0",
"@vercel/ncc": "^0.38.1",
"aws-sdk-client-mock": "^4.0.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"bin": {
"ezmc": "bin/index.js"
}
}