-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@vadimgodev/ecsh",
"version": "0.1.1",
"description": "ssh for ECS — open an interactive shell in an AWS ECS container",
"type": "module",
"bin": {
"ecsh": "dist/bin.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write .",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"author": "Vadim Goncharov",
"repository": {
"type": "git",
"url": "git+https://github.com/vadimgodev/ecsh.git"
},
"homepage": "https://github.com/vadimgodev/ecsh#readme",
"bugs": {
"url": "https://github.com/vadimgodev/ecsh/issues"
},
"keywords": [
"ecs",
"aws",
"ssh",
"exec",
"cli",
"execute-command",
"session-manager",
"fargate",
"ssm"
],
"dependencies": {
"@aws-sdk/client-ecs": "^3.1075.0",
"@aws-sdk/credential-providers": "^3.1075.0",
"@inquirer/prompts": "^8.5.2",
"commander": "^15.0.0",
"env-paths": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^22.0.0",
"aws-sdk-client-mock": "^4.1.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}