-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@jcoreio/ec2-ssh",
"version": "0.0.0-development",
"description": "select an EC2 instance in your account from a prompt, then SSH into it",
"author": "Andy Edwards",
"license": "MIT",
"engines": {
"node": ">=16"
},
"bin": {
"ec2-ssh": "./dist/cli.js"
},
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/ec2-ssh.git"
},
"keywords": [
"aws",
"ec2",
"ssh",
"cli"
],
"bugs": {
"url": "https://github.com/jcoreio/ec2-ssh/issues"
},
"homepage": "https://github.com/jcoreio/ec2-ssh#readme",
"devDependencies": {
"@jcoreio/toolchain": "^5.8.8",
"@jcoreio/toolchain-circle": "^5.8.8",
"@jcoreio/toolchain-esnext": "^5.8.8",
"@jcoreio/toolchain-semantic-release": "^5.8.8",
"@jcoreio/toolchain-typescript": "^5.8.8",
"@types/node": "^20.14.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^6.12.0",
"globals": "^16.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.4.2",
"typescript": "^5.1.0"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.592.0",
"@aws-sdk/client-ssm": "^3.592.0",
"@babel/runtime": "^7.26.0",
"@jcoreio/aws-select-cli-prompts": "^2.0.4",
"chalk": "^5.6.2",
"execa": "^9.6.1"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"import": "./dist/index.d.mts",
"default": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"packageManager": "pnpm@10.6.5",
"@jcoreio/toolchain": {
"migratedVersion": "5.8.8"
}
}